We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30d567c commit 731e4c7Copy full SHA for 731e4c7
1 file changed
.github/workflows/pages.yml
@@ -42,15 +42,19 @@ jobs:
42
43
- name: Run MkDocs
44
run: uv run mkdocs build
45
-
46
- - name: Setup Pages
47
- uses: actions/configure-pages@v3
48
49
- name: Upload artifact
50
uses: actions/upload-pages-artifact@v2
51
with:
52
path: 'site'
53
+
+ deploy:
+ environment:
+ name: github-pages
54
+ url: ${{ steps.deployment.outputs.page_url }}
55
+ runs-on: ubuntu-latest
56
+ needs: build
57
+ steps:
58
- name: Deploy to GitHub Pages
59
id: deployment
- uses: actions/deploy-pages@v2
60
+ uses: actions/deploy-pages@v4
0 commit comments