tried again to fix #15 (im gonna crash out)

This commit is contained in:
2026-06-10 04:30:27 +02:00
parent 1ff7d6b776
commit d70aa85f99

View File

@@ -27,12 +27,17 @@ jobs:
--username "${{ secrets.REGISTRY_USER }}" \
--password-stdin
- name: Prepare Docker image tags
run: |
IMAGE_REPO="$(echo "git.miaurizius.de/${{ gitea.repository }}" | tr '[:upper:]' '[:lower:]')"
echo "IMAGE_REPO=$IMAGE_REPO" >> "$GITHUB_ENV"
- name: Build and push multi-arch Docker image
run: |
docker buildx build \
--platform linux/amd64,linux/arm64 \
--file ./Dockerfile \
--tag git.miaurizius.de/${{ gitea.repository }}:latest \
--tag git.miaurizius.de/${{ gitea.repository }}:${{ gitea.event.release.tag_name }} \
--tag "$IMAGE_REPO:latest" \
--tag "$IMAGE_REPO:${{ gitea.event.release.tag_name }}" \
--push \
.