Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fwilhe committed Mar 14, 2024
1 parent 084edb2 commit b997ab6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
run: |
tmpdir="$(mktemp -d)"
pushd "$tmpdir"
if [ "${{ inputs.arch }}" = "amd64" ]; then
if [ "${{ matrix.arch }}" = "amd64" ]; then
curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-amd64
GOOD_SHA=80c5ab9422d4672f650f2bad3da933568349b64117d055486abc3534517be2af
elif [ "${{ inputs.arch }}" = "arm64" ]; then
elif [ "${{ matrix.arch }}" = "arm64" ]; then
curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-arm64
GOOD_SHA=0486629e1599c3bccded279f6555ff22691958cde56203ceca099af6f2407263
fi
Expand Down Expand Up @@ -70,10 +70,10 @@ jobs:
run: |
tmpdir="$(mktemp -d)"
pushd "$tmpdir"
if [ "${{ inputs.arch }}" = "amd64" ]; then
if [ "${{ matrix.arch }}" = "amd64" ]; then
curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-amd64
GOOD_SHA=80c5ab9422d4672f650f2bad3da933568349b64117d055486abc3534517be2af
elif [ "${{ inputs.arch }}" = "arm64" ]; then
elif [ "${{ matrix.arch }}" = "arm64" ]; then
curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-arm64
GOOD_SHA=0486629e1599c3bccded279f6555ff22691958cde56203ceca099af6f2407263
fi
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
run: |
tmpdir="$(mktemp -d)"
pushd "$tmpdir"
if [ "${{ inputs.arch }}" = "amd64" ]; then
if [ "${{ matrix.arch }}" = "amd64" ]; then
curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-amd64
GOOD_SHA=80c5ab9422d4672f650f2bad3da933568349b64117d055486abc3534517be2af
elif [ "${{ inputs.arch }}" = "arm64" ]; then
elif [ "${{ matrix.arch }}" = "arm64" ]; then
curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-arm64
GOOD_SHA=0486629e1599c3bccded279f6555ff22691958cde56203ceca099af6f2407263
fi
Expand Down Expand Up @@ -74,10 +74,10 @@ jobs:
run: |
tmpdir="$(mktemp -d)"
pushd "$tmpdir"
if [ "${{ inputs.arch }}" = "amd64" ]; then
if [ "${{ matrix.arch }}" = "amd64" ]; then
curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-amd64
GOOD_SHA=80c5ab9422d4672f650f2bad3da933568349b64117d055486abc3534517be2af
elif [ "${{ inputs.arch }}" = "arm64" ]; then
elif [ "${{ matrix.arch }}" = "arm64" ]; then
curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-arm64
GOOD_SHA=0486629e1599c3bccded279f6555ff22691958cde56203ceca099af6f2407263
fi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sysexts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
run: |
tmpdir="$(mktemp -d)"
pushd "$tmpdir"
if [ "${{ inputs.arch }}" = "amd64" ]; then
if [ "${{ matrix.arch }}" = "amd64" ]; then
curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-amd64
GOOD_SHA=80c5ab9422d4672f650f2bad3da933568349b64117d055486abc3534517be2af
elif [ "${{ inputs.arch }}" = "arm64" ]; then
elif [ "${{ matrix.arch }}" = "arm64" ]; then
curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-arm64
GOOD_SHA=0486629e1599c3bccded279f6555ff22691958cde56203ceca099af6f2407263
fi
Expand Down

0 comments on commit b997ab6

Please sign in to comment.