Release binary to existing tag #17
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 binary to existing tag | |
on: | |
workflow_dispatch: | |
inputs: | |
# Get name of the chain | |
chain: | |
description: Chain (default = tinkernet) | |
required: true | |
default: tinkernet | |
type: choice | |
options: | |
- tinkernet | |
- invarch | |
jobs: | |
build_binary: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./${{ github.event.inputs.chain }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Free disk space | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
sudo rm -rf "/usr/local/share/boost" | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
df -h | |
- name: Setup for checks | |
run: sudo apt install -y git clang curl libssl-dev llvm libudev-dev protobuf-compiler | |
- name: Install & display rust toolchain | |
run: rustup show | |
- name: Build binary | |
run: cargo build --release | |
- name: Add binary to release | |
uses: djnicholson/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag-name: ${{ github.ref_name }} | |
asset-name: '${{ github.event.inputs.chain }}-collator' | |
file: './${{ github.event.inputs.chain }}/target/release/${{ github.event.inputs.chain }}-collator' |