Skip to content

Commit 19bdc8e

Browse files
committed
ci: fixed build workflow by adding missing env file step
1 parent 080363c commit 19bdc8e

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/publish-tagged.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ jobs:
2828
- name: Download all modules
2929
run: npm ci
3030

31+
# Not truly necessary for build, but for now the vite config requires it
32+
- name: Create .env file
33+
run: |
34+
echo FXSERVER_PATH=$(pwd)/fxserver > .env
35+
echo VITE_URL='http://localhost:40122' >> .env
36+
3137
- name: Build project
3238
run: |
3339
npm run build

0 commit comments

Comments
 (0)