We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6c50d8 commit 6b4d611Copy full SHA for 6b4d611
1 file changed
.github/workflows/release.yaml
@@ -13,13 +13,20 @@ jobs:
13
uses: actions/setup-node@v4
14
with:
15
node-version: 24.x
16
+ cache: 'npm'
17
+
18
+ - name: Configure Git
19
+ run: |
20
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
21
+ git config --global user.name "github-actions[bot]"
22
23
- name: Install dependencies
- run: npm install
24
+ run: npm ci
25
26
- name: Build project
27
run: npm run build
28
env:
29
CI: false
- - name: Install gh-pages
- run: npm install gh-pages --save-dev
- - name: Deploy application
30
31
+ - name: Deploy to GitHub Pages
32
run: npx gh-pages -d build
0 commit comments