We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3f099f commit 4a6dca4Copy full SHA for 4a6dca4
1 file changed
.github/workflows/deploy.yaml
@@ -2,7 +2,7 @@ name: Deploy to GitHub Pages
2
3
on:
4
push:
5
- branches: 'main'
+ branches: 'master'
6
7
jobs:
8
build_site:
@@ -21,16 +21,16 @@ jobs:
21
uses: actions/setup-node@v4
22
with:
23
node-version: 20
24
- cache: npm
+ cache: pnpm
25
26
- name: Install dependencies
27
- run: npm i
+ run: pnpm i
28
29
- name: build
30
env:
31
BASE_PATH: '/${{ github.event.repository.name }}'
32
run: |
33
- npm run build
+ pnpm run build
34
35
- name: Upload Artifacts
36
uses: actions/upload-pages-artifact@v3
0 commit comments