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.
2 parents 8089c1c + fffcdd5 commit 16a37f3Copy full SHA for 16a37f3
1 file changed
.github/workflows/auto_deploy.yml
@@ -13,12 +13,9 @@ jobs:
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v3
16
- - uses: actions/setup-node@v3
+ - uses: oven-sh/setup-bun@v1
17
with:
18
- node-version: 19.x
19
- cache: "yarn"
20
- cache-dependency-path: ./vue-front/yarn.lock
21
-
+ bun-version: 1.0.26
22
- name: setup git auth
23
run: |
24
git config --global credential.helper store
@@ -31,7 +28,7 @@ jobs:
31
28
- name: deploy to gh-pages
32
29
33
30
cd vue-front
34
- yarn
+ bun install
35
mkdir tmp
36
cd tmp
37
git init
@@ -41,7 +38,7 @@ jobs:
41
38
find . -maxdepth 1 -type f ! -name "CNAME" -exec rm -v {} \;
42
39
find . -maxdepth 1 -type d ! -name ".git" -exec rm -rv {} \;
43
40
cd ..
44
- NODE_ENV=production yarn run build
+ bun run build
45
mv dist/* tmp
46
47
if [[ ! $(git status --porcelain) ]]; then
0 commit comments