Merge pull request #2944 from irisnet/dreamer/v3.x #1
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: Release | |
on: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
jobs: | |
setup-build-publish: | |
name: Setup, Build and Publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Codes | |
uses: actions/checkout@v4 | |
- name: Setup Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.21.0' # The Go version to download (if necessary) and use. | |
- name: Build Binaries | |
run: | | |
sudo apt-get install -y gcc-aarch64-linux-gnu | |
make build-all-binaries | |
- name: Publish Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
body_path: RELEASE.md | |
files: | | |
build/iris-linux-amd64 | |
build/iris-linux-arm64 |