ci: Fix potential typo in publishing of archives
This commit is contained in:
@@ -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 }}
|
||||||
|
|||||||
Reference in New Issue
Block a user