Skip to content

Commit 7ab0cc9

Browse files
committed
Fix Git write permissions
1 parent d6ee57b commit 7ab0cc9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Cache Deploy
1+
name: Deploy
22
on:
33
push:
44
branches:
@@ -17,20 +17,21 @@ jobs:
1717
env:
1818
CI: true
1919
DISABLE_NOTIFIER: true
20+
permissions:
21+
contents: write
2022

2123
steps:
2224
- uses: actions/checkout@v4
2325
with:
2426
fetch-depth: 0
25-
persist-credentials: true
2627

2728
- name: Setup Node.js
2829
uses: actions/setup-node@v4
2930
with:
3031
node-version: '22'
3132

3233
- name: Install dependencies
33-
run: npm ci --no-audit --fund=false --ignore-scripts
34+
run: npm ci --no-audit --fund=false
3435

3536
- name: Compile CSS
3637
run: npm run styles

0 commit comments

Comments
 (0)