Merge pull request #110 from Vovke/force-withdrawal #11
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: Rust cargo build and draft release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
cargo-build: | |
name: Cargo build | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout sources | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 50 | |
submodules: 'recursive' | |
- name: Install Rust stable toolchain | |
uses: actions-rs/[email protected] | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- name: cargo build | |
run: cargo build --release | |
- name: Get package version | |
run: > | |
echo "VERSION=$( | |
cargo metadata --format-version=1 --no-deps | | |
jq -r '.packages[] | select(.name == "kalatori") | .version' | |
)" >> $GITHUB_ENV | |
- name: Draft release binary | |
run: gh release create -d $VERSION ./target/release/kalatori --generate-notes |