Merge pull request #132 from golemfactory/mw/fix-cargo-lock/1 #52
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 Release | |
on: | |
push: | |
tags: | |
- v* | |
- pre-rel-* | |
env: | |
CARGO_TERM_COLOR: always | |
rust_stable: 1.79.0 | |
jobs: | |
release: | |
name: CI | |
runs-on: ${{ matrix.os }}-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
- ubuntu | |
- windows | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ env.rust_stable }} | |
components: clippy, rustfmt | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo tree --locked | |
- name: Build | |
run: cargo build --workspace --release | |
- name: Move descriptor | |
run: cp conf/ya-dummy-ai.json target/release/ya-dummy-ai.json | |
- name: Pack | |
id: pack | |
shell: bash | |
env: | |
OS_NAME: ${{ matrix.os }} | |
GITHUB_REF: ${{ github.ref }} | |
run: | | |
bash .ci/pack-build.sh | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
files: | | |
releases/runtime-* | |
releases/dummy-framework-* | |
prerelease: ${{ startsWith(github.ref, 'refs/tags/pre-rel-v') }} |