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 da8e5a1 commit ba04a1fCopy full SHA for ba04a1f
1 file changed
.github/workflows/build_pages.yml
@@ -12,7 +12,7 @@ permissions: {}
12
13
jobs:
14
# Build job
15
- build:
+ build-sphinx:
16
runs-on: ubuntu-latest
17
permissions:
18
contents: read
@@ -37,11 +37,10 @@ jobs:
37
- name: Upload distribution artifacts
38
uses: actions/upload-pages-artifact@v5
39
with:
40
- name: sphinx-html-site
41
path: _build/html/
42
43
- deploy:
44
- needs: build
+ deploy-pages:
+ needs: build-sphinx
45
if: ${{ github.ref == 'refs/heads/main' }}
46
47
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
@@ -60,5 +59,3 @@ jobs:
60
59
- name: Deploy to GitHub Pages
61
id: deployment
62
uses: actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action
63
- with:
64
- artifact-name: "sphinx-html-site"
0 commit comments