Skip to content

Commit 2dda98a

Browse files
committed
chore: Add VITE_OUT_DIR environment variable to frontend build step in release workflow
1 parent c46aa3b commit 2dda98a

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626

2727
- name: Build frontend
2828
working-directory: ./web
29+
env:
30+
VITE_OUT_DIR: dist
2931
run: |
3032
rm -rf package-lock.json node_modules
3133
npm i

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
node-version: ${{ env.NODE_VERSION }}
2727
- name: Build frontend
2828
working-directory: ./web
29+
env:
30+
VITE_OUT_DIR: dist
2931
run: |
3032
rm -rf package-lock.json node_modules
3133
npm i

0 commit comments

Comments
 (0)