Skip to content

Commit 8cc4902

Browse files
committed
fix: Add build step
1 parent b86be04 commit 8cc4902

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
cache: 'npm'
2525
- name: Install dependencies
2626
run: npm ci
27+
- name: Build Caprine
28+
run: npm run build
2729
- name: Cleanup tag
2830
uses: mad9000/actions-find-and-replace-string@5
2931
id: release_tag
@@ -34,7 +36,7 @@ jobs:
3436
- name: Install Snapcraft
3537
uses: samuelmeuli/action-snapcraft@v1
3638
if: startsWith(matrix.os, 'ubuntu')
37-
- name: Build Caprine for macOS
39+
- name: Package Caprine for macOS
3840
if: startsWith(matrix.os, 'macos')
3941
run: npm run dist:mac
4042
env:
@@ -55,7 +57,7 @@ jobs:
5557
dist/Caprine-${{ steps.release_tag.outputs.value }}.dmg
5658
dist/Caprine-${{ steps.release_tag.outputs.value }}.dmg.blockmap
5759
dist/latest-mac.yml
58-
- name: Build Caprine for Windows
60+
- name: Package Caprine for Windows
5961
if: startsWith(matrix.os, 'windows')
6062
run: npm run dist:win
6163
- name: Publish Caprine for Windows
@@ -67,7 +69,7 @@ jobs:
6769
dist/Caprine-Setup-${{ steps.release_tag.outputs.value }}.exe
6870
dist/Caprine-Setup-${{ steps.release_tag.outputs.value }}.exe.blockmap
6971
dist/latest.yml
70-
- name: Build Caprine for Linux
72+
- name: Package Caprine for Linux
7173
if: startsWith(matrix.os, 'ubuntu')
7274
run: npm run dist:linux
7375
- name: Publish Caprine for Linux

0 commit comments

Comments
 (0)