From 18ee7e4a9f6c3c866c5c8c32948a2a537cba8480 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Sun, 14 Sep 2025 17:08:09 -0600 Subject: [PATCH] ci: Fix potential typo in publishing of archives --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index abc425b..456562e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -338,14 +338,15 @@ jobs: echo "sha=dist/$name.sha256" >> $GITHUB_OUTPUT fi - - name: Publish Archive + - name: Publish Archive and SHA if: env.ACT != 'true' uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - draft: false - files: ${{ steps.package.outputs.archive }} ${{ steps.package.outputs.sha }} + files: | + ${{ steps.package.outputs.archive }} + ${{ steps.package.outputs.sha }} tag_name: v${{ env.RELEASE_VERSION }} name: "v${{ env.RELEASE_VERSION }}" body: ${{ env.changelog_body }}