From ea5260c954e9a3306a5c95c0815633dbea4824e4 Mon Sep 17 00:00:00 2001 From: Adam Dinwoodie Date: Wed, 18 Oct 2023 22:34:41 +0100 Subject: [PATCH] Need to check out before you can do things --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a5cd89..e69a4ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,6 +51,11 @@ jobs: - name: Manually configure safe.directory run: git config --global --add safe.directory '*' timeout-minutes: 1 + - name: Checkout + uses: actions/checkout@v3 + with: + set-safe-directory: false # actions/checkout otherwise tries to use the wrong config file, per actions/checkout#767 + timeout-minutes: 1 - name: Cygport cygport download env: GIT_REV: ${{ matrix.cygport-ref }} @@ -87,11 +92,6 @@ jobs: path: cygport-build-results-${{ matrix.cygport-ref }}.txz if-no-files-found: error timeout-minutes: 10 - - name: Checkout - uses: actions/checkout@v3 - with: - set-safe-directory: false # actions/checkout otherwise tries to use the wrong config file, per actions/checkout#767 - timeout-minutes: 1 - name: Load variables from the cygport file run: | eval "$(cygport git.cygport vars BUILD_REQUIRES PVR)"