Skip to content

Commit 6b4d611

Browse files
authored
Update release.yaml
1 parent c6c50d8 commit 6b4d611

1 file changed

Lines changed: 11 additions & 4 deletions

File tree

.github/workflows/release.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,20 @@ jobs:
1313
uses: actions/setup-node@v4
1414
with:
1515
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+
1623
- name: Install dependencies
17-
run: npm install
24+
run: npm ci
25+
1826
- name: Build project
1927
run: npm run build
2028
env:
2129
CI: false
22-
- name: Install gh-pages
23-
run: npm install gh-pages --save-dev
24-
- name: Deploy application
30+
31+
- name: Deploy to GitHub Pages
2532
run: npx gh-pages -d build

0 commit comments

Comments
 (0)