diff --git a/.gitea/workflows/linux_arm64_docker-release.yaml b/.gitea/workflows/linux_arm64_docker-release.yaml index bf8bf9e..5137f17 100644 --- a/.gitea/workflows/linux_arm64_docker-release.yaml +++ b/.gitea/workflows/linux_arm64_docker-release.yaml @@ -28,14 +28,20 @@ jobs: with: dotnet-version: '10.0.x' - - name: Build and Push Image - uses: docker/build-push-action@v6 - with: - context: . - platforms: linux/arm64 - push: true - tags: gitea.penry.de/couchlog/linux-arm64:latest - load: true + - name: Build Linux ARM64 Docker Image + run: docker build -t gitea.penry.de/couchlog/linux-arm64:latest . + + #- name: Build and Push Image + # uses: docker/build-push-action@v6 + # with: + # context: . + # platforms: linux/arm64 + # push: true + # tags: gitea.penry.de/couchlog/linux-arm64:latest + # load: true + + - name: Push + run: docker push gitea.penry.de/couchlog/linux-arm64:latest - name: Make Tar from image run: |