From 3a1e4fae1530a4a047fd0282c3772dc3190eb3f6 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Mon, 30 Oct 2023 16:03:49 +0300 Subject: [PATCH] ci: Explicitly make artifact needed for GH releases, no longer part of make dist --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 72cb0282..f8c2c61e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,6 +29,10 @@ jobs: - name: Build source package run: | make dist + - name: Build release notes + if: github.repository == 'sile-typesetter/casile' && startsWith(github.ref, 'refs/tags/v') + run: | + make casile-${{ env.VERSION}}.md - name: Publish Release uses: softprops/action-gh-release@v1 if: github.repository == 'sile-typesetter/casile' && startsWith(github.ref, 'refs/tags/v')