summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-27 03:14:48 -0600
committerGitHub <[email protected]>2024-05-27 09:14:48 +0000
commit309fdfdc7ce195e1f9b703bef90a08b150695c1b (patch)
tree562cd029c93493db6d028a943fb2c1ac91345c8a /.github
parent43fcd6d289fb04164e66f9185acaf706cf43df36 (diff)
nix: fix architecture string for arm image (#1)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docker.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml
index 8736484..5f4697f 100644
--- a/.github/workflows/docker.yaml
+++ b/.github/workflows/docker.yaml
@@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- arch: [x86_64, aarch64]
+ arch: [x86_64, arm64]
runs-on: ubuntu-latest
@@ -111,7 +111,7 @@ jobs:
env:
TAG: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
run: |
- architectures=("x86_64" "aarch64")
+ architectures=("x86_64" "arm64")
for arch in "${architectures[@]}"; do
docker load < images/container-"$arch"/*.tar.gz
docker tag nixpkgs-tracker-bot:latest-"$arch" "$TAG"-"$arch"
@@ -120,6 +120,6 @@ jobs:
docker manifest create "$TAG" \
--amend "$TAG"-x86_64 \
- --amend "$TAG"-aarch64
+ --amend "$TAG"-arm64
docker manifest push "$TAG"