Skip to content

Commit

Permalink
fix(ci): fix bash shenanigans
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadowghost committed Mar 6, 2022
1 parent ca5ec33 commit b31f1c5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/_meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,11 @@ jobs:

- name: Prepare Release Assets
run: |-
find ./ -type f \( -name "*.deb" -o -name "*.zip" \) | while read file; do
sha256sum ${file#./} >> ${file%.*}.sha256
cd artifact
find . -type f \( -name "*.deb" -o -name "*.zip" \) | while read file; do
sha256sum "${file}" | tee "${file}.sha256sum"
done
cd ..
- name: Upload GH Release Assets
uses: shogo82148/actions-upload-release-asset@v1.5.0
Expand Down

0 comments on commit b31f1c5

Please sign in to comment.