oooooh, closer
Some checks failed
Test action / Print hello world (push) Failing after 8s

This commit is contained in:
Chris Kruining 2025-09-04 10:17:08 +02:00
parent 95f6b2b8d3
commit 863956c38b
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -28,13 +28,16 @@ jobs:
- name: __DEBUG__
run: which podman
- name: __DEBUG__
run: podman --version
- name: Log into registry
run: docker login ${{ env.registry }}
run: podman login ${{ env.registry }}
- name: Build image
run: >-
docker build
podman build
-t ${{ env.registry }}/${{ env.owner }}/${{ env.image }}:${{ env.tag }} ./modules/nixos/services/development/forgejo/Dockerfile.default
- name: Push image
run: docker push ${{ env.registry }}/${{ env.owner }}/${{ env.image }}:${{ env.tag }}
run: podman push ${{ env.registry }}/${{ env.owner }}/${{ env.image }}:${{ env.tag }}