Skip to content

Commit

Permalink
Fix bootnode build.
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-smith committed Mar 19, 2024
1 parent 55a7474 commit be507e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
github-assets-uploader -logtostderr -f build/bin/bor-$(basename ${GITHUB_REF})-linux-arm64.tar.gz.md5 -mediatype text/plain -repo ${GITHUB_REPOSITORY} -token ${{ secrets.GITHUB_TOKEN }} -tag=$(basename ${GITHUB_REF}) -releasename="" -retry 3
- name: Build bootnode
run: |
cd cmd/bootnode && /opt/go/1.19.5/bin/go build
cd cmd/bootnode && /opt/go/1.19.5/bin/go build -o bootnode
tar -czvf bootnode-$(basename ${GITHUB_REF})-linux-arm64.tar.gz bootnode
echo $(md5sum bootnode | awk '{print $1}') > bootnode-$(basename ${GITHUB_REF})-linux-arm64.tar.gz.md5
- name: Upload bootnode to release page
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
${ASSETS_UPLOADER_DIR}/github-assets-uploader -logtostderr -f build/bin/bor-$(basename ${GITHUB_REF})-linux-amd64.tar.gz.md5 -mediatype text/plain -repo ${GITHUB_REPOSITORY} -token ${{ secrets.GITHUB_TOKEN }} -tag=$(basename ${GITHUB_REF}) -releasename="" -retry 3
- name: Build bootnode
run: |
cd cmd/bootnode && go build
cd cmd/bootnode && go build -o bootnode
tar -czvf bootnode-$(basename ${GITHUB_REF})-linux-amd64.tar.gz bootnode
echo $(md5sum bootnode | awk '{print $1}') > bootnode-$(basename ${GITHUB_REF})-linux-amd64.tar.gz.md5
- name: Upload bootnode to release page
Expand Down

0 comments on commit be507e8

Please sign in to comment.