From 30612b71dd5303fbdc764df1d726bdb7acee3a9e Mon Sep 17 00:00:00 2001 From: Severin Leonhardt Date: Sat, 7 Feb 2026 17:09:49 +0100 Subject: [PATCH] Make Changelog available in publish job The changelog isn't an artifact but in the repository itself. So in addition to downloading the build artifacts the repository must also be checked out. --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 88ff15a..05e5ec4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,6 +41,9 @@ jobs: needs: build steps: + - name: Checkout + uses: actions/checkout@v4 + - uses: actions/download-artifact@v4 with: merge-multiple: true