Skip to content

Commit

Permalink
.github/workflows/release_pyromod.yml:add sha256sum
Browse files Browse the repository at this point in the history
  • Loading branch information
andy5995 committed Sep 13, 2022
1 parent 2365363 commit a950e78
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release_pyromod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@ jobs:
zip -r ${HOME}/${MOD_NAME}-${MOD_VERSION}.zip . -x .git\*
mv ${HOME}/${MOD_NAME}*.zip $PWD
cp ${MOD_NAME}-${MOD_VERSION}.zip ${MOD_NAME}-${MOD_VERSION}.pyromod
echo "Generating sha1sum..."
sha256sum ${MOD_NAME}-${MOD_VERSION}.zip > ${MOD_NAME}-${MOD_VERSION}.zip.sha256sum
sha256sum ${MOD_NAME}-${MOD_VERSION}.pyromod > ${MOD_NAME}-${MOD_VERSION}.pyromod.sha256sum
- name: Release PyroMod
uses: ncipollo/release-action@v1
with:
allowUpdates: True
prerelease: False
artifacts: "no-gather*.*"
artifacts: "${{ env.MOD_NAME }}*.*"
token: ${{ secrets.GITHUB_TOKEN }}
omitNameDuringUpdate: True
omitBodyDuringUpdate: True
Expand Down

0 comments on commit a950e78

Please sign in to comment.