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 e89a512 commit 3ba39b2Copy full SHA for 3ba39b2
.github/workflows/deploy.yml
@@ -9,17 +9,15 @@ on:
9
workflow_dispatch:
10
11
# Allow this job to clone the repo and create a page deployment
12
-permissions:
13
- contents: read
14
- pages: write
15
- id-token: write
16
17
jobs:
18
build:
19
runs-on: ubuntu-latest
20
steps:
21
- name: Checkout your repository using git
22
uses: actions/checkout@v4
+ with:
+ persist-credentials: false
23
24
- name: Install, build, and upload your site
25
uses: withastro/action@v3
@@ -29,6 +27,9 @@ jobs:
29
27
deploy:
30
28
needs: build
31
+ permissions:
+ pages: write
32
+ id-token: write
33
environment:
34
name: github-pages
35
url: ${{ steps.deployment.outputs.page_url }}
0 commit comments