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

This commit is contained in:
Chris Kruining 2025-09-04 11:14:41 +02:00
parent 4a26a4ad11
commit 8b07f55593
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -18,7 +18,10 @@ jobs:
runs-on: default
steps:
- name: Pull dependencies
run: git clone https://${{ env.registry }}/${{ env.owner }}/sneeuwvlok.git
run: |
ls -al
git clone https://${{ env.registry }}/${{ env.owner }}/sneeuwvlok.git .
ls -al
- name: Install docker
run: nix-env -iA nixpkgs.podman
@ -29,7 +32,7 @@ jobs:
- name: Build image
run: >-
podman build
-t ${{ env.registry }}/${{ env.owner }}/${{ env.image }}:${{ env.tag }} sneeuwvlok/modules/nixos/services/development/forgejo/Dockerfile.default
-t ${{ env.registry }}/${{ env.owner }}/${{ env.image }}:${{ env.tag }} modules/nixos/services/development/forgejo/Dockerfile.default
- name: Push image
run: podman push ${{ env.registry }}/${{ env.owner }}/${{ env.image }}:${{ env.tag }}