Skip to content

Commit f15466b

Browse files
committed
ci: Fix build conf
1 parent 25de450 commit f15466b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,22 @@ jobs:
2020
- name: Set APP_VERSION env
2121
run: echo APP_VERSION=$(echo ${GITHUB_REF} | rev | cut -d'/' -f 1 | rev ) >> ${GITHUB_ENV}
2222

23+
- name: Set up Node.js
24+
uses: actions/setup-node@v3
25+
with:
26+
node-version: 18.x
27+
28+
- name: Prepare Vue App
29+
run: |
30+
cd internal/web
31+
corepack enable && corepack prepare
32+
pnpm i
33+
34+
- name: Build Vue App
35+
run: |
36+
cd internal/web
37+
pnpm run build
38+
2339
- uses: wangyoucao577/go-release-action@v1.32
2440
with:
2541
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)