diff --git a/.forgejo/workflows/workflow.yaml b/.forgejo/workflows/workflow.yaml index 3554b90..cf27d86 100644 --- a/.forgejo/workflows/workflow.yaml +++ b/.forgejo/workflows/workflow.yaml @@ -11,7 +11,7 @@ on: - "**/Dockerfile" jobs: Clone and Build: - runs-on: website + runs-on: docker steps: - name: Clone repository uses: actions/checkout@v4 @@ -38,7 +38,7 @@ jobs: run: | podman build -t notatio . Push-Image: - runs-on: website + runs-on: docker steps: - name: Push image to registry run: | @@ -46,7 +46,7 @@ jobs: podman push notatio ${{ vars.registry }} podman logout ${{ vars.registry }} Cleanup: - runs-on: website + runs-on: docker steps: - name: Cleanup image run: |