We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 205e12e commit dc289e3Copy full SHA for dc289e3
1 file changed
.github/workflows/deploy.yml
@@ -10,13 +10,15 @@ jobs:
10
runs-on: ubuntu-latest
11
12
permissions:
13
- contents: read
+ contents: write # Changed from 'read' to 'write' for gh-pages action
14
pages: write
15
id-token: write
16
17
steps:
18
- name: Checkout
19
uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0 # Fetch all history for git operations
22
23
- name: Set up Node.js
24
uses: actions/setup-node@v4
@@ -35,6 +37,7 @@ jobs:
35
37
with:
36
38
github_token: ${{ secrets.GITHUB_TOKEN }}
39
publish_dir: ./
40
+ cname: false
41
exclude_assets: |
42
.git
43
.github
@@ -50,4 +53,5 @@ jobs:
50
53
vite.config.ts
51
54
vite-plugin-save-content.ts
52
55
README.md
56
+ deploy.js
57
0 commit comments