We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5676da6 commit 7585316Copy full SHA for 7585316
.github/workflows/gh-pages.yml
@@ -6,6 +6,9 @@ on:
6
jobs:
7
build:
8
runs-on: ubuntu-latest
9
+ environment:
10
+ name: github-pages
11
+ url: ${{ steps.deployment.outputs.page_url }}
12
permissions:
13
id-token: write
14
pages: write
@@ -25,7 +28,9 @@ jobs:
25
28
uses: sphinx-notes/pages@v3
26
29
with:
27
30
requirements_path: ./docs/doc_requirements.txt
- - name: Deploy GitHub Pages site
- id: deployment
- uses: actions/deploy-pages@main
31
+ - name: Push changes
32
+ uses: ad-m/github-push-action@master
33
+ with:
34
+ github_token: ${{ secrets.GITHUB_TOKEN }}
35
+ branch: gh-pages
36
0 commit comments