Skip to content

Commit

Permalink
fix: Missing install deps step
Browse files Browse the repository at this point in the history
  • Loading branch information
dusansimic committed Apr 3, 2024
1 parent 31231c2 commit 2e2f1ed
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Cleanup tag
uses: mad9000/actions-find-and-replace-string@5
id: release_tag
Expand All @@ -42,6 +44,7 @@ jobs:
if: startsWith(matrix.os, 'macos')
uses: softprops/action-gh-release@v2
with:
draft: true
files: |
dist/Caprine-${{ steps.release_tag.outputs.value }}-arm64-mac.zip
dist/Caprine-${{ steps.release_tag.outputs.value }}-arm64-mac.zip.blockmap
Expand All @@ -59,6 +62,7 @@ jobs:
if: startsWith(matrix.os, 'windows')
uses: softprops/action-gh-release@v2
with:
draft: true
files: |
dist/Caprine-Setup-${{ steps.release_tag.outputs.value }}.exe
dist/Caprine-Setup-${{ steps.release_tag.outputs.value }}.exe.blockmap
Expand All @@ -70,6 +74,7 @@ jobs:
if: startsWith(matrix.os, 'ubuntu')
uses: softprops/action-gh-release@v2
with:
draft: true
files: |
dist/Caprine-${{ steps.release_tag.outputs.value }}.AppImage
dist/caprine_${{ steps.release_tag.outputs.value }}_amd64.deb
Expand Down

0 comments on commit 2e2f1ed

Please sign in to comment.