diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index c39d32a..c7d70cd 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -45,9 +45,11 @@ jobs: run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" env: JEKYLL_ENV: production - - name: Upload artifact - # Automatically uploads an artifact from the './_site' directory by default + - name: Upload static files as artifact + id: deployment uses: actions/upload-pages-artifact@v3 + with: + path: _site/ # Deployment job deploy: @@ -59,4 +61,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 + uses: actions/deploy-pages@v4