Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
- {platform: centos-stream8-container, os: ubuntu-latest}
- {platform: centos-stream9-container, os: ubuntu-22.04}
- {platform: centos-stream10-container, os: ubuntu-22.04}
- {platform: amazonlinux2023-container, os: ubuntu-22.04}
- {platform: amazonlinux2023-aarch64-container, os: ubuntu-22.04-arm}
steps:
- name: Checkout sources
uses: actions/checkout@v5
Expand All @@ -49,7 +51,8 @@ jobs:
# crun >= 1.9.1 is required on Ubuntu 20.04.6
# this workaround came from ...
# https://github.com/kubernetes-sigs/kind/pull/3527
curl -sLo /tmp/crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-amd64
ARCH=$(arch | sed -e 's/x86_64/amd64/g' -e 's/aarch64/arm64/g')
curl -sLo /tmp/crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-$ARCH
chmod +x /tmp/crun
sudo cp /tmp/crun /usr/bin/crun
Expand Down
Loading