Skip to content

Commit a60e626

Browse files
Update build.yml
1 parent 299fa17 commit a60e626

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
cd frontend
1717
npm install
1818
- name: build-frontend
19-
run: npm run build
19+
run: |
20+
cd frontend
21+
npm run build
2022
- name: build-app
2123
run: npm run electron:build
2224

@@ -34,7 +36,9 @@ jobs:
3436
cd frontend
3537
npm install
3638
- name: build-frontend
37-
run: npm run build
39+
run: |
40+
cd frontend
41+
npm run build
3842
- name: build-app
3943
run: npm run electron:build
4044

@@ -52,6 +56,13 @@ jobs:
5256
cd frontend
5357
npm install
5458
- name: build-frontend
55-
run: npm run build
59+
run: |
60+
cd frontend
61+
npm run build
5662
- name: build-app
5763
run: npm run electron:build
64+
- name: Archive production artifacts
65+
uses: actions/upload-artifact@v3
66+
with:
67+
name: final
68+
path: ./

0 commit comments

Comments
 (0)