v0.9.5 #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Release Binaries | |
on: | |
release: | |
types: | |
- created | |
- edited | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
actions: write | |
jobs: | |
build: | |
name: Build Release Assets | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
platform: | |
[linux-amd64, linux-arm64] | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Display Go version | |
run: go version | |
- name: Display the release tag | |
run: | | |
echo "Release tag: ${{ github.event.release.tag_name }}" | |
- name: Set up environment for cross-compilation | |
run: | | |
IFS="-" read -r GOOS GOARCH <<< "${{ matrix.platform }}" | |
output_name=./build/bin/geth-${{ matrix.platform }} | |
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: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ github.event.release.tag_name }} | |
file: | | |
./build/bin/geth-${{ matrix.platform }} | |
./build/bin/geth-${{ matrix.platform }}.sha256 | |
file_glob: false | |