From 180cc4549ed5c1c032a9bb123ee17b3c6c82712e Mon Sep 17 00:00:00 2001 From: Severin Leonhardt Date: Sat, 7 Feb 2026 16:36:35 +0100 Subject: [PATCH] Fix publish job The name of the action was wrong, leading to: Error: Unable to resolve action actions/download-artifacts, repository not found The publish job also started before the build job. Fixed by adding the missing dependency. --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7e526d4..fa12ade 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,9 +38,10 @@ jobs: publish: runs-on: ubuntu-latest + needs: build steps: - - uses: actions/download-artifacts@v4 + - uses: actions/download-artifact@v4 with: merge-multiple: true