From 1ccc66dd22a1f455574ed1be4d1a469dec02887f Mon Sep 17 00:00:00 2001 From: JW Wesson Date: Fri, 27 Dec 2024 14:14:30 -0600 Subject: [PATCH] try this --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0fedbb4..b1ebc9c4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,7 +49,7 @@ jobs: - name: Upload Artifacts uses: actions/upload-artifact@v4 with: - name: site + name: site-${{ matrix.runs-on }} path: docfx/_site #the github-pages-deploy-action needs to run on ubuntu, so use upload/download artifact to generate on windows and publish on ubuntu @@ -68,13 +68,14 @@ jobs: - name: Download Artifacts uses: actions/download-artifact@v4 with: - name: site + path: site + pattern: site-* # publish the generated docs into the /docs folder on a new commit in this branch - name: Publish DocFX to GitHub Pages uses: JamesIves/github-pages-deploy-action@4.1.4 with: branch: ${{ steps.extract_branch.outputs.branch }} - folder: site #use the downloaded artifact name here + folder: site #use the downloaded artifact path here target-folder: docs git-config-name: Continuous Integration git-config-email: devs@sovren.com