ci: Fix potential typo in publishing of archives

This commit is contained in:
2025-09-14 17:08:09 -06:00
parent 68bc150d30
commit 18ee7e4a9f
+4 -3
View File
@@ -338,14 +338,15 @@ jobs:
echo "sha=dist/$name.sha256" >> $GITHUB_OUTPUT echo "sha=dist/$name.sha256" >> $GITHUB_OUTPUT
fi fi
- name: Publish Archive - name: Publish Archive and SHA
if: env.ACT != 'true' if: env.ACT != 'true'
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
draft: false files: |
files: ${{ steps.package.outputs.archive }} ${{ steps.package.outputs.sha }} ${{ steps.package.outputs.archive }}
${{ steps.package.outputs.sha }}
tag_name: v${{ env.RELEASE_VERSION }} tag_name: v${{ env.RELEASE_VERSION }}
name: "v${{ env.RELEASE_VERSION }}" name: "v${{ env.RELEASE_VERSION }}"
body: ${{ env.changelog_body }} body: ${{ env.changelog_body }}