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 0d12624 commit 78944b0Copy full SHA for 78944b0
.github/workflows/publish-book.yml
@@ -13,6 +13,16 @@ on:
13
# This job installs dependencies, builds the book, and pushes it to `gh-pages`
14
jobs:
15
deploy-book:
16
+ # Grant GITHUB_TOKEN the permissions required to make a Pages deployment
17
+ permissions:
18
+ pages: write # to deploy to Pages
19
+ id-token: write # to verify the deployment originates from an appropriate source
20
+
21
+ # Deploy to the github-pages environment
22
+ environment:
23
+ name: github-pages
24
+ url: ${{ steps.deployment.outputs.page_url }}
25
26
runs-on: ubuntu-latest
27
steps:
28
- uses: actions/checkout@v4
0 commit comments