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 1958143 commit 24cfff3Copy full SHA for 24cfff3
.github/workflows/ci.yml
@@ -49,20 +49,3 @@ jobs:
49
env:
50
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
52
- deploy:
53
- name: Deploy
54
- runs-on: ubuntu-latest
55
- if: github.ref == 'refs/heads/master'
56
-
57
- steps:
58
- - name: 'Install depependencies'
59
- run: |
60
- npm install --force
61
- - name: 'Build docs'
62
63
- npm run build_docs
64
- - name: Deploy to GitHub Pages
65
- uses: peaceiris/actions-gh-pages@v4
66
- with:
67
- github_token: ${{ secrets.GITHUB_TOKEN }}
68
- publish_dir: ./dist
Taskfile
@@ -13,7 +13,8 @@ build() {
13
}
14
15
build_docs() {
16
- vite build
+ vite build --no-minify
17
+ mv -vf dist docs
18
19
20
"$@"
0 commit comments