Skip to content

Commit

Permalink
attempt to fix multiline string output
Browse files Browse the repository at this point in the history
  • Loading branch information
overheadhunter committed Oct 6, 2023
1 parent b99619e commit 715d6a9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,11 @@ jobs:
- name: Calculate Checksums
id: checksums
run: |
SHA256SUMS=$(shasum -a256 target/*.jar)
echo "sha256=${SHA256SUMS}" >> $GITHUB_OUTPUT
{
echo 'sha256<<EOF'
shasum -a256 target/*.jar
echo EOF
} >> $GITHUB_OUTPUT
- name: Create Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 715d6a9

Please sign in to comment.