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 5476f1e commit 3ac2e07Copy full SHA for 3ac2e07
.github/workflows/deploy.yml
@@ -30,21 +30,20 @@ jobs:
30
uses: actions/setup-node@v4
31
with:
32
node-version: '22.x'
33
- cache: 'npm' # Enable caching for faster builds
+ cache: 'npm'
34
35
- name: Install dependencies
36
- run: npm ci # Use 'ci' instead of 'install' for reproducible builds
+ run: npm ci
37
38
- name: Build
39
run: npm run build
40
41
- name: Upload artifact
42
uses: actions/upload-pages-artifact@v3
43
44
- path: './dist' # Change to your build output directory
+ path: './dist'
45
46
deploy:
47
- # Only deploy on push to develop, not on PRs
48
if: github.event_name == 'push' && github.ref == 'refs/heads/develop'
49
50
environment:
0 commit comments