From bc009c4d0462df0c9d20a1df963c2ba033b9c5c6 Mon Sep 17 00:00:00 2001 From: Keiichiro Ui Date: Sun, 5 Nov 2023 01:25:01 +0900 Subject: [PATCH] Fix for a problem of the checkout action The checkout action does not work with annotated tags. See https://github.com/actions/checkout/issues/290. --- .github/workflows/release.yaml | 2 +- changelog/test4.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 changelog/test4.md diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a7689b6..69a3956 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,6 +12,6 @@ jobs: - name: Build run: docker compose run make zip - name: Release - run: gh release create ${{ github.ref }} knavi.zip --notes-from-tag + run: gh release create ${{ github.ref }} knavi.zip --notes-file changelog/${{ github.ref_name }}.md env: GH_TOKEN: ${{ github.token }} diff --git a/changelog/test4.md b/changelog/test4.md new file mode 100644 index 0000000..79c7155 --- /dev/null +++ b/changelog/test4.md @@ -0,0 +1,3 @@ +# test4 + +This is a description of test4.