Skip to content

Commit

Permalink
ci release: add
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed May 29, 2023
1 parent 753eae5 commit 35a78a4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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("## Groonga synonym "); \
puts(ARGF.read.split(/^## /)[1].gsub(/ {.+?}/, ""))' \
NEWS.md > release-note.md
- name: Upload to release
run: |
title=$(head -n1 release-note.md | sed -e 's/^## //')
tail -n +2 release-note.md > release-note-without-version.md
gh release create ${GITHUB_REF_NAME} \
--discussion-category Announcements \
--notes-file release-note-without-version.md \
--title "${title}"
env:
GH_TOKEN: ${{ github.token }}

0 comments on commit 35a78a4

Please sign in to comment.