From dd4bb86d735216560aadaa7bb5142a0dec69b828 Mon Sep 17 00:00:00 2001 From: James Ives Date: Wed, 17 Apr 2024 09:30:57 -0400 Subject: [PATCH] fix: checkout before integration --- .github/workflows/integration.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 90384eead..ca1ed5475 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -173,15 +173,15 @@ jobs: needs: integration-ssh-third-party-client runs-on: ubuntu-latest steps: - - uses: actions/setup-node@v4 - with: - node-version-file: '.nvmrc' - - name: Checkout uses: actions/checkout@v4 with: persist-credentials: false + - uses: actions/setup-node@v4 + with: + node-version-file: '.nvmrc' + - name: Build and Deploy uses: JamesIves/github-pages-deploy-action@v4 with: @@ -309,6 +309,7 @@ jobs: branch: gh-pages-rebase-conflict folder: integration force: false + # Clean up conflicting deployments integration-rebase-conflicts-cleanup: needs: [integration-rebase-conflicts-1, integration-rebase-conflicts-2]