Skip to content

Commit

Permalink
Add a workflow to build on pushed tags
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwlchan committed May 17, 2024
1 parent 08d21ae commit beab2fd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/upload_binaries.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Upload binaries

on:
push:
tags:
- v[0-9]+.*

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit beab2fd

Please sign in to comment.