We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e880aaf commit 51d5f49Copy full SHA for 51d5f49
.github/workflows/deploy.yml
@@ -29,13 +29,13 @@ jobs:
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
32
- pip install mkdocs mkdocs-material # add extra plugins if needed
+ pip install mkdocs mkdocs-material # add plugins if needed
33
34
- name: Build MkDocs site
35
run: mkdocs build --strict --site-dir site
36
37
- name: Upload Pages artifact
38
- uses: actions/upload-pages-artifact@v1
+ uses: actions/upload-pages-artifact@v3 # v3 is fine for Pages specifically now
39
with:
40
path: site
41
@@ -44,4 +44,4 @@ jobs:
44
needs: build
45
steps:
46
- name: Deploy to GitHub Pages
47
- uses: actions/deploy-pages@v1
+ uses: actions/deploy-pages@v4
0 commit comments