We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae53928 commit c2a1a76Copy full SHA for c2a1a76
.github/workflows/gh-pages.yml
@@ -34,9 +34,10 @@ jobs:
34
name: 'github-pages'
35
path: 'docs/_build/html'
36
deploy:
37
+ # Add a dependency to the build job
38
+ needs: build
39
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
40
permissions:
- contents: read
41
pages: write
42
id-token: write
43
# Deploy to the github-pages environment
@@ -48,4 +49,4 @@ jobs:
48
49
steps:
50
- name: Deploy to GitHub Pages
51
id: deployment
- uses: actions/deploy-pages@v2 # or the latest "vX.X.X" version tag for this action
52
+ uses: actions/deploy-pages@v2 # or the latest "vX.X.X" version tag for this action
0 commit comments