From 362508597901aa3fff050c71aa82a4c8273173f6 Mon Sep 17 00:00:00 2001 From: Mikhail Rubanov Date: Sun, 17 Dec 2023 15:34:34 -0300 Subject: [PATCH] Move Upload artifact to build steps --- .github/workflows/update_docs.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update_docs.yml b/.github/workflows/update_docs.yml index 706ae21..51c1131 100644 --- a/.github/workflows/update_docs.yml +++ b/.github/workflows/update_docs.yml @@ -53,6 +53,11 @@ jobs: transform-for-static-hosting ${{ env.DERIVED_DATA_PATH }}Build/Products/Debug-iphoneos/${{ env.SCHEME }}.doccarchive --output-path ${{ env.ARTEFACT_PATH }} --hosting-base-path ${{ env.HOSTING_BASE_PATH }} + + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + with: + path: ${{ env.ARTEFACT_PATH }} deploy: needs: update-docs @@ -63,11 +68,6 @@ jobs: runs-on: 'macos-13' steps: - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - path: ${{ env.ARTEFACT_PATH }} - - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v1