Skip to content

Commit 39320da

Browse files
committed
fix: releae fe version
1 parent a46c01e commit 39320da

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
cache: "npm"
2222
cache-dependency-path: "web/package-lock.json"
2323
- name: Build Frontend
24-
run: VITE_VERSION=${{ github.ref_name }} npm install && npm run build
24+
run: npm install && VITE_VERSION=${{ github.ref_name }} npm run build
2525
working-directory: ./web
2626
- name: Setup Go
2727
uses: actions/setup-go@v5

.github/workflows/release-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
cache: "npm"
2222
cache-dependency-path: "web/package-lock.json"
2323
- name: Build Frontend
24-
run: VITE_VERSION=${{ github.ref_name }} npm install && npm run build
24+
run: npm install && VITE_VERSION=${{ github.ref_name }} npm run build
2525
working-directory: ./web
2626
- name: Setup Go
2727
uses: actions/setup-go@v5

.github/workflows/release-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
cache: "npm"
2525
cache-dependency-path: "web/package-lock.json"
2626
- name: Build Frontend
27-
run: VITE_VERSION=${{ github.ref_name }} npm install && npm run build
27+
run: npm install && VITE_VERSION=${{ github.ref_name }} npm run build
2828
working-directory: ./web
2929
- name: Setup Go
3030
uses: actions/setup-go@v5

0 commit comments

Comments
 (0)