From d944b09c51511674613ed0cd2ec1b86aff0f5e28 Mon Sep 17 00:00:00 2001 From: jamesread Date: Fri, 24 Oct 2025 01:18:14 +0100 Subject: [PATCH] chore: Move up the saving of integrationtests --- .github/workflows/build-and-release.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index c102f1f..6e16462 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -67,6 +67,15 @@ jobs: - name: integration tests run: cd integration-tests && make -w + - name: Archive integration tests + uses: actions/upload-artifact@v4.3.1 + if: always() + with: + name: "OliveTin-integration-tests-${{ env.DATE }}-${{ github.sha }}" + path: | + integration-tests + !integration-tests/node_modules + - name: Install goreleaser uses: goreleaser/goreleaser-action@v6 with: @@ -94,11 +103,3 @@ jobs: name: "OliveTin-snapshot-${{ env.DATE }}-${{ github.sha }}" path: dist/OliveTin*.* - - name: Archive integration tests - uses: actions/upload-artifact@v4.3.1 - if: always() - with: - name: "OliveTin-integration-tests-${{ env.DATE }}-${{ github.sha }}" - path: | - integration-tests - !integration-tests/node_modules