From b82031f095dc8b8074bed36176f538fc3eeced81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steven!=20Ragnar=C3=B6k?= Date: Mon, 19 Aug 2024 21:04:52 -0700 Subject: [PATCH] Separate jobs run in separate contexts. I thought that workflows were isolated but jobs were not. Ah well. --- .github/workflows/doc.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/doc.yaml b/.github/workflows/doc.yaml index 4b83c0921..e715c8e2a 100644 --- a/.github/workflows/doc.yaml +++ b/.github/workflows/doc.yaml @@ -13,10 +13,6 @@ jobs: - name: Build documentation run: | earthly --ci --output +doc - upload: - needs: build - runs-on: ubuntu-22.04 - steps: - name: Upload build for GitHub Pages uses: actions/upload-pages-artifact@v3 with: @@ -29,7 +25,7 @@ jobs: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} - needs: upload + needs: build runs-on: ubuntu-22.04 steps: - name: Deploy to GitHub Pages