Skip to content

Commit

Permalink
release: add support for GitHub Releases
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 14, 2023
1 parent 1977eb1 commit 1a467ea
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release
on:
push:
tags:
- "*"
jobs:
github:
name: GitHub
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Extract release note
run: |
ruby \
-e 'print("## stringio "); \
puts(ARGF.read.split(/^## /)[1])' \
NEWS.md > release-note.md
- name: Upload to release
run: |
gh release create ${GITHUB_REF_NAME} \
--notes-file release-note.md
env:
GH_TOKEN: ${{ github.token }}

0 comments on commit 1a467ea

Please sign in to comment.