Skip to content

Commit

Permalink
Fixing sha256 sum replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
kdambekalns committed Sep 29, 2020
1 parent 95857f2 commit eba2dc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:

- name: Calculate checksum (darwin)
id: calculate-checksums-darwin
run: echo "::set-output name=darwin_sha256sum::$(sha256sum beach_darwin_amd64.zip)"
run: echo "::set-output name=darwin_sha256sum::$(sha256sum beach_darwin_amd64.zip | awk '//{print $1}')"

- name: Upload Release Asset (linux)
id: upload-release-asset-linux
Expand All @@ -92,7 +92,7 @@ jobs:

- name: Calculate checksum (linux)
id: calculate-checksums-linux
run: echo "::set-output name=linux_sha256sum::$(sha256sum beach_linux_amd64.zip)"
run: echo "::set-output name=linux_sha256sum::$(sha256sum beach_linux_amd64.zip | awk '//{print $1}')"

homebrew:
name: Homebrew release
Expand Down

0 comments on commit eba2dc0

Please sign in to comment.