fix(ci): cleanup prev release; TODO to issues #27
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 Atleta Node binaries | |
env: | |
CARGO_TERM_COLOR: always | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- devnet | |
- testnet | |
- stagenet | |
- mainnet | |
tags: | |
- 'release-v*' | |
permissions: | |
contents: write | |
jobs: | |
define_vars: | |
runs-on: ubuntu-latest | |
outputs: | |
release_name: ${{ steps.vars.outputs.release_name }} | |
commit_sha: ${{ steps.vars.outputs.commit_sha }} | |
steps: | |
- id: vars | |
run: | | |
commit_sha=${{ github.sha }} | |
echo "commit_sha=${commit_sha:0:7}" >> "$GITHUB_OUTPUT" | |
echo "release_name=$(echo ${{ github.ref_name }} | sed 's/^release-//')" >> "$GITHUB_OUTPUT" | |
linux_build: | |
runs-on: ubuntu-latest | |
needs: define_vars | |
outputs: | |
artifact: ${{ steps.artifact.outputs.name }} | |
steps: | |
- run: | | |
sudo apt-get update | |
sudo apt-get install protobuf-compiler | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
target: wasm32-unknown-unknown | |
components: rust-src | |
- uses: actions/checkout@v4 | |
- id: build | |
env: | |
RUSTFLAGS: --allow warnings | |
run: cargo build --locked --release | |
- id: artifact | |
env: | |
commit_sha: ${{ needs.define_vars.outputs.commit_sha }} | |
run: | | |
echo "name=build-${{ env.commit_sha }}-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_OUTPUT" | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.artifact.outputs.name }} | |
path: ./target/release/atleta-node | |
if-no-files-found: error | |
macos_build: | |
runs-on: macos-latest | |
needs: define_vars | |
outputs: | |
artifact: ${{ steps.artifact.outputs.name }} | |
steps: | |
- run: | | |
brew update | |
brew upgrade rustup | |
brew install protobuf | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
target: wasm32-unknown-unknown | |
components: rust-src | |
- uses: actions/checkout@v4 | |
- id: build | |
env: | |
RUSTFLAGS: --allow warnings | |
run: cargo build --locked --release | |
- id: artifact | |
env: | |
commit_sha: ${{ needs.define_vars.outputs.commit_sha }} | |
run: | | |
echo "name=build-${{ env.commit_sha }}-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_OUTPUT" | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.artifact.outputs.name }} | |
path: ./target/release/atleta-node | |
if-no-files-found: error | |
publish_release: | |
runs-on: ubuntu-latest | |
needs: [define_vars, linux_build, macos_build] | |
steps: | |
- uses: actions/download-artifact@v4 | |
env: | |
artifact: ${{ needs.linux_build.outputs.artifact }} | |
with: | |
name: ${{ env.artifact }} | |
path: release/linux | |
- uses: actions/download-artifact@v4 | |
env: | |
artifact: ${{ needs.macos_build.outputs.artifact }} | |
with: | |
name: ${{ env.artifact }} | |
path: release/macos | |
- id: bundle | |
env: | |
tarball: ${{ format('{0}-release.tar.gz', needs.define_vars.outputs.release_name) }} | |
run: | | |
tar czvf ${{ env.tarball }} --directory=release . | |
echo "archive=${{ env.tarball }}" > "$GITHUB_OUTPUT" | |
# deleting tag w/ release is required (otherwise we have inconsistent release content) | |
# TODO: rolling timestamp for mainnet tags | |
# TODO: setup cleanup and other jobs conditions in vars as contextual policy object | |
- if: ${{ contains(fromJSON('["refs/heads/devnet", "refs/heads/stagenet"]'), github.ref) }} | |
continue-on-error: true | |
env: | |
GH_TOKEN: ${{ github.token }} | |
release_tag: ${{ github.ref_name }} | |
run: | | |
gh --repo ${{ github.repository }} release delete release-${{ env.release_tag }} --yes --cleanup-tag | |
- id: publish | |
env: | |
GH_TOKEN: ${{ github.token }} | |
release_name: ${{ needs.define_vars.outputs.release_name }} | |
release_tag: ${{ startsWith(github.ref, 'refs/tags') && github.ref_name || format('release-{0}', github.ref_name) }} | |
release_archive: ${{ steps.bundle.outputs.archive }} | |
run: | | |
gh --repo ${{ github.repository }} release create ${{ env.release_tag }} --latest --title ${{ env.release_name }} ${{ env.release_archive }} | |