.gitea/workflows/linux_arm64_docker-release.yaml aktualisiert
All checks were successful
Build Docker Linux ARM64 Release / build-docker-linux-arm64-release (push) Successful in 1m39s

This commit is contained in:
Henry Trumme
2025-12-22 00:53:49 +01:00
parent f93e222f7c
commit 0c4816c2b6

View File

@@ -28,20 +28,24 @@ jobs:
with: with:
dotnet-version: '10.0.x' dotnet-version: '10.0.x'
#- name: Build Linux ARM64 Docker Image - name: Build Linux ARM64 Docker Image
# run: docker build -t gitea.penry.de/couchlog/linux-arm64:latest . run: |
docker build \
-t gitea.penry.de/couchlog/linux-arm64:latest \
--label "org.opencontainers.image.source=https://gitea.penry.de/${{ github.repository }}" \
.
- name: Build and Push Image #- name: Build and Push Image
uses: docker/build-push-action@v6 # uses: docker/build-push-action@v6
with: # with:
context: . # context: .
platforms: linux/arm64 # platforms: linux/arm64
push: true # push: true
tags: gitea.penry.de/couchlog/linux-arm64:latest # tags: gitea.penry.de/couchlog/linux-arm64:latest
load: true # load: true
#- name: Push - name: Push
# run: docker push gitea.penry.de/couchlog/linux-arm64:latest run: docker push gitea.penry.de/couchlog/linux-arm64:latest
- name: Make Tar from image - name: Make Tar from image
run: | run: |