From 8ad0238f007906125f623365ffd991912ccca86b Mon Sep 17 00:00:00 2001 From: Keith Valin Date: Wed, 21 Jan 2026 16:42:54 -0500 Subject: [PATCH 1/2] refactor(release): Allow aarch64 and x86_64 arch for crun --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ea372bce746..96547a9d6c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,7 +49,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 From f69c21d9d79f29fbe46b78bae1e132d3c3e346d0 Mon Sep 17 00:00:00 2001 From: Keith Valin Date: Wed, 21 Jan 2026 16:43:41 -0500 Subject: [PATCH 2/2] feat(release): Add AmazonLinux 2023 packages to the release pipeline --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 96547a9d6c5..761486ebde6 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