We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 299fa17 commit a60e626Copy full SHA for a60e626
.github/workflows/build.yml
@@ -16,7 +16,9 @@ jobs:
16
cd frontend
17
npm install
18
- name: build-frontend
19
- run: npm run build
+ run: |
20
+ cd frontend
21
+ npm run build
22
- name: build-app
23
run: npm run electron:build
24
@@ -34,7 +36,9 @@ jobs:
34
36
35
37
38
39
40
41
42
43
44
@@ -52,6 +56,13 @@ jobs:
52
56
53
57
54
58
55
59
60
61
62
63
64
+ - name: Archive production artifacts
65
+ uses: actions/upload-artifact@v3
66
+ with:
67
+ name: final
68
+ path: ./
0 commit comments