'Generic Commit'

This commit is contained in:
Your Name
2025-06-15 09:06:13 +12:00
parent 57728ff87b
commit 1eba05347a

@ -45,15 +45,10 @@ jobs:
steps: steps:
- name: Create manifest list - name: Create manifest list
run: | run: |
docker manifest create gitea.jde.nz/public/dropshell-build-base:${GITHUB_SHA} \
gitea.jde.nz/public/dropshell-build-base:${GITHUB_SHA}-x86_64 \
gitea.jde.nz/public/dropshell-build-base:${GITHUB_SHA}-aarch64
docker manifest push gitea.jde.nz/public/dropshell-build-base:${GITHUB_SHA}
# Also tag as latest if on main branch # Also tag as latest if on main branch
if [ "$GITHUB_REF" = "refs/heads/main" ]; then if [ "$GITHUB_REF" = "refs/heads/main" ]; then
docker manifest create gitea.jde.nz/public/dropshell-build-base:latest \ docker manifest create gitea.jde.nz/public/dropshell-build-base:latest \
gitea.jde.nz/public/dropshell-build-base:${GITHUB_SHA}-x86_64 \ gitea.jde.nz/public/dropshell-build-base:latest-x86_64 \
gitea.jde.nz/public/dropshell-build-base:${GITHUB_SHA}-aarch64 gitea.jde.nz/public/dropshell-build-base:latest-aarch64
docker manifest push gitea.jde.nz/public/dropshell-build-base:latest docker manifest push gitea.jde.nz/public/dropshell-build-base:latest
fi fi