Skip to content

Commit

Permalink
ci: Use Go 1.21.
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-smith committed Oct 16, 2023
1 parent d302546 commit 0b94ede
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ jobs:
name: Release Go Binary arm64
runs-on: [self-hosted, arm64]
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- uses: actions/checkout@v2
- name: Build geth
run: |
cd cmd/geth && /opt/go/1.21.3/bin/go build
cd cmd/geth && go build
tar -czvf geth-$(basename ${GITHUB_REF})-linux-arm64.tar.gz geth
echo $(md5sum geth | awk '{print $1}') > geth-$(basename ${GITHUB_REF})-linux-arm64.tar.gz.md5
- name: Upload geth to release page
Expand Down

0 comments on commit 0b94ede

Please sign in to comment.