Skip to content

Commit

Permalink
ci relase: add
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Mar 18, 2024
1 parent 49bc1e1 commit 653c5a6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release
on:
push:
tags:
- "*"
jobs:
github:
name: GitHub
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Create a release
run: |
ruby \
-e 'print("## locale "); \
puts(ARGF.read.split(/^## /)[1])' \
doc/text/news.md > release-note.md
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 653c5a6

Please sign in to comment.