Skip to content

Commit

Permalink
Create GitHub release when tag is pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
nyg committed Jan 27, 2024
1 parent d9de827 commit 3013703
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
@@ -0,0 +1,15 @@
name: Create GitHub release
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
jobs:
create_release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Create release
run: gh release create ${{ github.ref_name}} -F CHANGELOG.md
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3013703

Please sign in to comment.