Fix vite_deploy
This commit is contained in:
parent
c25d9aa975
commit
71f6a1edcd
2 changed files with 4 additions and 1 deletions
4
.github/workflows/vite_deploy.yaml
vendored
4
.github/workflows/vite_deploy.yaml
vendored
|
@ -36,7 +36,9 @@ jobs:
|
|||
node-version: 20
|
||||
cache: 'npm'
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
run: |
|
||||
rm package-lock.json
|
||||
npm install
|
||||
- name: Build
|
||||
run: npm run build
|
||||
- name: Setup Pages
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
.DS_Store
|
||||
node_modules/
|
||||
dist/
|
||||
|
|
Reference in a new issue