Skip to content

Commit

Permalink
seperate linux and windows artifact upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Matte22 committed Feb 19, 2024
1 parent e821ea7 commit 0c59956
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build-binary-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,16 @@ jobs:
- name: run build script
id: run-build-script
run: ./build.sh
- name: Upload archives
- name: Upload Windows artifact
uses: actions/upload-artifact@v3
with:
name: binary-artifacts
path: ./dist
if-no-files-found: error
path: ./dist/*.zip
if-no-files-found: error
- name: Upload Linux artifact
uses: actions/upload-artifact@v3
with:
name: binary-artifacts
path: ./dist/*.tar.gz
if-no-files-found: error

0 comments on commit 0c59956

Please sign in to comment.