Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
add gh release workflow (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
alishakawaguchi committed Jan 6, 2023
1 parent 2443cd3 commit a697759
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Publish GitHub Release

permissions:
contents: write

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

jobs:
release:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v3
- name: GH Release
run: |
gh release create "${GITHUB_REF#refs/tags/}" --generate-notes
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit a697759

Please sign in to comment.