Skip to content

Commit

Permalink
ci(#60): always upload build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
jannis-baum committed Jul 8, 2024
1 parent 344c568 commit b148ae0
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,9 @@ jobs:
yarn
make linux
- name: package
if: startsWith(github.ref, 'refs/tags/v')
run: |
zip -r vivify-linux.zip bin/linux/*
zip -r vivify-linux.zip build/linux/*
- name: upload artifact
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v3
with:
name: vivify-linux
Expand All @@ -60,11 +58,9 @@ jobs:
yarn
make macos
- name: package
if: startsWith(github.ref, 'refs/tags/v')
run: |
zip -r vivify-macos.zip bin/macos/*
zip -r vivify-macos.zip build/macos/*
- name: upload artifact
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v3
with:
name: vivify-macos
Expand Down

0 comments on commit b148ae0

Please sign in to comment.