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 d269336 commit 82bb053Copy full SHA for 82bb053
.github/workflows/deploy-pages.yml
@@ -5,8 +5,17 @@ on:
5
branches:
6
- main
7
8
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
9
+permissions:
10
+ contents: read
11
+ pages: write
12
+ id-token: write
13
+
14
jobs:
15
deploy:
16
+ environment:
17
+ name: github-pages
18
+ url: ${{ steps.deployment.outputs.page_url }}
19
runs-on: ubuntu-latest
20
steps:
21
- uses: actions/checkout@v4
@@ -20,6 +29,5 @@ jobs:
29
path: '.'
30
22
31
- name: Deploy to GitHub Pages
23
- uses: actions/deploy-pages@v4
24
- with:
25
- token: ${{ secrets.WF_TOKEN }}
32
+ id: deployment
33
+ uses: actions/deploy-pages@v4
0 commit comments