We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6ee57b commit 7ab0cc9Copy full SHA for 7ab0cc9
.github/workflows/deploy.yml
@@ -1,4 +1,4 @@
1
-name: Cache Deploy
+name: Deploy
2
on:
3
push:
4
branches:
@@ -17,20 +17,21 @@ jobs:
17
env:
18
CI: true
19
DISABLE_NOTIFIER: true
20
+ permissions:
21
+ contents: write
22
23
steps:
24
- uses: actions/checkout@v4
25
with:
26
fetch-depth: 0
- persist-credentials: true
27
28
- name: Setup Node.js
29
uses: actions/setup-node@v4
30
31
node-version: '22'
32
33
- name: Install dependencies
- run: npm ci --no-audit --fund=false --ignore-scripts
34
+ run: npm ci --no-audit --fund=false
35
36
- name: Compile CSS
37
run: npm run styles
0 commit comments