From 0c5de0f178df6288a6bbe2b68b6dfe0b4c799c68 Mon Sep 17 00:00:00 2001 From: Jeff Charles Date: Fri, 19 Sep 2025 10:05:21 -0400 Subject: [PATCH] Fix publish workflow --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e83ba699..6895ed49 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,6 +27,7 @@ jobs: uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 with: path: artifacts + merge-multiple: true - name: Upload assets to release env: @@ -34,5 +35,5 @@ jobs: run: | # Upload all files from the build job for file in artifacts/*; do - gh release upload ${{ inputs.tag_name || github.event.release.tag_name }} $file + gh release upload ${{ inputs.tag_name || github.event.release.tag_name }} $file --repo ${{ github.repository }} done