From 5d51bb0511f060444fa7191f823ca36fd554d06f Mon Sep 17 00:00:00 2001 From: henrik Date: Fri, 3 Oct 2025 17:24:14 +0200 Subject: [PATCH] Moved checkout to seperate job --- .gitea/workflows/web-deploy.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/web-deploy.yaml b/.gitea/workflows/web-deploy.yaml index 6042947..300f345 100644 --- a/.gitea/workflows/web-deploy.yaml +++ b/.gitea/workflows/web-deploy.yaml @@ -3,13 +3,17 @@ run-name: Web Proxy - Nix on: [push, merge] jobs: - setup-nixos-runner: - run-on: ubuntu-latest - container: - image: ubuntu + checkout-repo: + run-on: ubuntu-latest steps: - name: checkout uses: https://github.com/actions/checkout@v4 + setup-nixos-runner: + run-on: ubuntu-latest + needs: [checkout-repo] + container: + image: ubuntu + steps: - name: echo in image run: echo "Hello Workflow world!" - name: List current folder