Skip to content

Commit

Permalink
fix: fix upload of linux prebuilds
Browse files Browse the repository at this point in the history
  • Loading branch information
dsouza95 committed Mar 7, 2024
1 parent 757700e commit 41e5ecd
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,8 @@ jobs:
files: ./build/Release
outPath: speech-recorder-v${{inputs.version}}-napi-v6-darwin-x64.tar.gz

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: speech-recorder-dist
path: speech-recorder-*.tar.gz
retention-days: 1
- name: Cleanup macos build
run: rm -rf build/Release

- name: Download linux build artifacts
uses: actions/download-artifact@v3
Expand All @@ -154,6 +150,13 @@ jobs:
files: ./build/Release
outPath: speech-recorder-v${{inputs.version}}-napi-v6-linux-x64.tar.gz

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: speech-recorder-dist
path: speech-recorder-*.tar.gz
retention-days: 1

- name: Cleanup linux build
run: rm -rf build/Release

Expand Down

0 comments on commit 41e5ecd

Please sign in to comment.