0g-chain/.github/workflows/upload-release-assets.yml

26 lines
649 B
YAML
Raw Normal View History

name: Upload Release Assets
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
2024-08-05 01:53:17 +00:00
go-version: '1.21'
- name: Build
2024-08-05 15:11:18 +00:00
run: sudo LINK_STATICALLY=true make build-release
- name: Rename file
2024-08-05 15:11:18 +00:00
run: sudo mv ./out/linux/0gchaind ./out/linux/0gchaind-linux-${{ github.ref_name }}
- name: Upload Release Asset
uses: softprops/action-gh-release@v2
with:
files: ./out/linux/0gchaind-linux-${{ github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.ZG_UPLOAD_ASSET }}