We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7b2a7d commit f7a283fCopy full SHA for f7a283f
1 file changed
.github/workflows/static.yml
@@ -1,8 +1,7 @@
1
name: Deploy SvelteKit to GitHub Pages
2
3
on:
4
- push:
5
- branches: [main]
+ workflow_dispatch: # allows manual trigger
6
7
permissions:
8
contents: read
@@ -22,10 +21,9 @@ jobs:
22
21
- uses: actions/setup-node@v4
23
with:
24
node-version-file: .nvmrc
25
- cache: npm # cache node_modules for faster builds
26
27
- name: Install dependencies
28
- run: npm ci
+ run: npm i
29
30
# Build the SvelteKit project
31
- name: Build project
0 commit comments