diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ea372bce74..761486ebde 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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