From 96bba4677d27319c40b3209401b81e007b4b71e7 Mon Sep 17 00:00:00 2001 From: aria Date: Fri, 16 May 2025 23:28:29 +1000 Subject: [PATCH] Move checkout back to the top --- .forgejo/workflows/deploy.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 2553b14..ff8fc67 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -12,6 +12,9 @@ jobs: container: image: docker.io/node:23-bookworm steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Install pnpm uses: https://github.com/pnpm/action-setup@v4 with: @@ -31,10 +34,6 @@ jobs: known_hosts: ${{ secrets.KNOWN_HOSTS }} if_key_exists: fail - - - name: Checkout - uses: actions/checkout@v4 - - run: pnpm install - name: Build website