From 653c5a6a90d14f12866573d795431cb2033e36d0 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Mon, 18 Mar 2024 23:08:12 +0900 Subject: [PATCH] ci relase: add --- .github/workflows/release.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..734278f --- /dev/null +++ b/.github/workflows/release.yml @@ -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 }}