Skip to content

Commit

Permalink
ci: release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Leksat committed Sep 9, 2022
1 parent 76bdf70 commit abd57e7
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/worflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "Release"
on:
push:
branches:
- release

jobs:
publish-tauri:
strategy:
fail-fast: false

runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v1
with:
node-version: 16
- name: install Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: install app dependencies and build it
run: yarn && yarn build
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v__VERSION__
releaseName: "aptt v__VERSION__"
releaseBody: "See the assets to download this version and install."
releaseDraft: false
prerelease: false

0 comments on commit abd57e7

Please sign in to comment.