Skip to content

Commit

Permalink
feat: add linux prebuilt binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
dsouza95 committed Mar 7, 2024
1 parent b0b28e2 commit 757700e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
- os: windows-2019
arch: x64
name: win32
- os: ubuntu-latest
arch: x64
name: linux
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -138,6 +141,22 @@ jobs:
path: speech-recorder-*.tar.gz
retention-days: 1

- name: Download linux build artifacts
uses: actions/download-artifact@v3
with:
name: build-linux-x64
path: build/Release

- name: Compress linux artifacts
uses: a7ul/[email protected]
with:
command: c
files: ./build/Release
outPath: speech-recorder-v${{inputs.version}}-napi-v6-linux-x64.tar.gz

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

release-and-publish:
name: Create release and publish
runs-on: ubuntu-latest
Expand Down

0 comments on commit 757700e

Please sign in to comment.