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 and upload release binaries | |
on: | |
release: | |
types: [published] | |
# push: | |
# tags: | |
# - "*.*.*" | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Install Go | |
run: | | |
if [ $(uname -m) = "aarch64" ]; then | |
wget https://golang.org/dl/go1.19.5.linux-arm64.tar.gz && | |
sudo tar -C /usr/local -xzf go1.19.5.linux-arm64.tar.gz | |
else | |
wget https://golang.org/dl/go1.19.5.linux-amd64.tar.gz && | |
sudo tar -C /usr/local -xzf go1.19.5.linux-amd64.tar.gz | |
fi | |
export PATH=$PATH:/usr/local/go/bin | |
- name: Build release binary | |
run: | | |
cargo build --release | |
- name: Upload Ubuntu binary | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ./target/release/graphcast-cli | |
asset_name: graphcast-cli-${{ github.event.release.tag_name }}-ubuntu | |
asset_content_type: binary/octet-stream | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.19.5" | |
- name: Build release binary | |
run: | | |
cargo build --release | |
- name: Upload MacOS binary | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ./target/release/graphcast-cli | |
asset_name: graphcast-cli-${{ github.event.release.tag_name }}-macos | |
asset_content_type: binary/octet-stream |