Skip to content

Commit 715d6a9

Browse files
attempt to fix multiline string output
1 parent b99619e commit 715d6a9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,11 @@ jobs:
4343
- name: Calculate Checksums
4444
id: checksums
4545
run: |
46-
SHA256SUMS=$(shasum -a256 target/*.jar)
47-
echo "sha256=${SHA256SUMS}" >> $GITHUB_OUTPUT
46+
{
47+
echo 'sha256<<EOF'
48+
shasum -a256 target/*.jar
49+
echo EOF
50+
} >> $GITHUB_OUTPUT
4851
- name: Create Release
4952
if: startsWith(github.ref, 'refs/tags/')
5053
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)