Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hogelog committed Mar 26, 2023
1 parent 405e94c commit 48cb42a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- main
tags:
- v*
pull_request: ~

jobs:
Expand All @@ -20,3 +22,11 @@ jobs:
- run: flutter pub get
- run: dart run.dart setup
- run: dart run.dart build
- if: startsWith(github.ref, 'refs/tags/v')
uses: ncipollo/release-action@v1
with:
artifacts: "build/windows/runner/whispercppapp-*.zip"
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
name: ${{ github.ref }}
body: ${{ github.event.head_commit.message }}

0 comments on commit 48cb42a

Please sign in to comment.