generated from marc2332/tauri-deno-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c17831
commit 6476864
Showing
2 changed files
with
16 additions
and
401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ on: | |
push: | ||
tags: | ||
- '*' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release: | ||
|
@@ -49,12 +48,27 @@ jobs: | |
- name: Install frontend dependencies | ||
run: npm ci | ||
|
||
- name: Build the app | ||
- name: Update CHANGELOG | ||
id: changelog | ||
uses: requarks/[email protected] | ||
with: | ||
token: ${{ github.token }} | ||
tag: ${{ github.ref_name }} | ||
|
||
- name: Create Github Release | ||
uses: tauri-apps/[email protected] | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
releaseName: 'Bluetooth Battery Monitor v__VERSION__' | ||
releaseBody: ${{ steps.changelog.outputs.changes }} | ||
tagName: ${{ github.ref_name }} # This only works if your workflow triggers on new tags. | ||
prerelease: false | ||
|
||
- name: Commit CHANGELOG.md | ||
uses: stefanzweifel/[email protected] | ||
with: | ||
branch: main | ||
commit_message: 'docs: update CHANGELOG.md for ${{ github.ref_name }} [skip ci]' | ||
file_pattern: CHANGELOG.md |
Oops, something went wrong.