Skip to content

Commit

Permalink
Release v2.0.0-alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
sifex committed Jul 28, 2024
1 parent 687dabc commit 418ab66
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/compile_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
run: npm ci --include=dev

- name: Build for ${{ matrix.os }}
env:
GH_TOKEN: ${{ secrets.github_token }}
run: |
if [ "${{ matrix.os }}" == "macos-latest" ]; then
npm run release:mac
Expand All @@ -58,3 +60,14 @@ jobs:
dist/*.exe
dist/*.zip
if-no-files-found: error

- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}

# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}

0 comments on commit 418ab66

Please sign in to comment.