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 25de450 commit f15466bCopy full SHA for f15466b
.github/workflows/release.yml
@@ -20,6 +20,22 @@ jobs:
20
- name: Set APP_VERSION env
21
run: echo APP_VERSION=$(echo ${GITHUB_REF} | rev | cut -d'/' -f 1 | rev ) >> ${GITHUB_ENV}
22
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
36
37
+ pnpm run build
38
39
- uses: wangyoucao577/go-release-action@v1.32
40
with:
41
github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments