diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0fe2db9e..0542e76b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,7 +77,7 @@ jobs: - run: | echo head_ref: ${{ github.head_ref }} echo run id: ${{ github.run_id }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup .NET uses: actions/setup-dotnet@v4 with: @@ -150,7 +150,7 @@ jobs: compression-level: 9 retention-days: 1 - wrs-build: + wrs: runs-on: ubuntu-latest if: github.ref == 'refs/heads/master' name: '📃 Build Documentation' @@ -163,25 +163,27 @@ jobs: instance: ${{ env.DOC_INSTANCE }} artifact: ${{ env.DOC_INSTANCE }} docker-version: ${{ env.DOC_DOCKER_VERSION }} - - name: Upload documentation - uses: actions/upload-artifact@v4 - with: - name: docs - path: artifacts/*.zip - retention-days: 1 - wrs-deploy: - runs-on: ubuntu-latest - needs: - - wrs-build - name: '📄 Deploy Documentation' - steps: - - name: ⬇️ Download artifacts - uses: actions/download-artifact@v4 - with: - name: docs + # - name: Upload documentation + # uses: actions/upload-artifact@v4 + # with: + # name: docs + # path: artifacts/*.zip + # retention-days: 1 + + # wrs-deploy: + # runs-on: ubuntu-latest + # needs: + # - wrs-build + # name: '📄 Deploy Documentation' + # steps: + # - name: ⬇️ Download artifacts + # uses: actions/download-artifact@v4 + # with: + # name: docs + - name: 🤐 Unzip artifact - run: unzip -O UTF-8 -qq ${{ env.DOC_ARTIFACT }} -d dir + run: unzip -O UTF-8 -qq artifacts/${{ env.DOC_ARTIFACT }} -d dir - name: Setup Pages uses: actions/configure-pages@v2 - name: Upload artifact to GH Pages