From 2fd86a00949da0c650872904ae6cfcfe467ddea5 Mon Sep 17 00:00:00 2001 From: Musselman Date: Tue, 2 Jul 2024 00:41:11 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20Chore:=20Make=20Notatio=20?= =?UTF-8?q?use=20docker=20machines=20to=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .forgejo/workflows/workflow.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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: |