.gitea/workflows/linux_arm64_docker-release.yaml aktualisiert
Some checks failed
Build Docker Linux ARM64 Release / build-docker-linux-arm64-release (push) Failing after 57s

This commit is contained in:
2025-12-22 01:17:08 +01:00
parent 220d323567
commit 08b8d6c177

View File

@@ -13,6 +13,10 @@ jobs:
- name: Clone the repository - name: Clone the repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Lowercase Repo Name
run: |
echo "REPO_LC=${GITHUB_REPOSITORY,,}" >> ${GITHUB_ENV}
- name: Login to own image registry - name: Login to own image registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
@@ -30,9 +34,8 @@ jobs:
- name: Build Linux ARM64 Docker Image - name: Build Linux ARM64 Docker Image
run: | run: |
# Wir bauen das Image exakt so, wie dein Repo heißt (z.B. penry/couchlog)
docker build \ docker build \
-t gitea.penry.de/${{ github.repository }}:latest \ -t gitea.penry.de/${{ env.REPO_LC }}:latest \
--label "org.opencontainers.image.source=https://gitea.penry.de/${{ github.repository }}" \ --label "org.opencontainers.image.source=https://gitea.penry.de/${{ github.repository }}" \
. .