diff --git a/.github/workflows/build-release-artifacts.yml b/.github/workflows/build-release-artifacts.yml index e8030de..84b49e9 100644 --- a/.github/workflows/build-release-artifacts.yml +++ b/.github/workflows/build-release-artifacts.yml @@ -40,6 +40,11 @@ jobs: echo "Building for $GOOS/$GOARCH..." env GOOS=$GOOS GOARCH=$GOARCH go build -o $output_name ./cmd/geth + + - name: Calculate checksum + run: | + sha256sum ./build/bin/geth-${{ matrix.platform }} > ./build/bin/geth-${{ matrix.platform }}.sha256 + - name: Upload binaries and source code to GitHub Release uses: svenstaro/upload-release-action@v2 with: @@ -47,5 +52,6 @@ jobs: tag: ${{ github.event.release.tag_name }} file: | ./build/bin/geth-${{ matrix.platform }} + ./build/bin/geth-${{ matrix.platform }}.sha256 file_glob: false