Skip to content

Update rust.yml

Update rust.yml #4

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Login into crates.io
run: cargo login ${{ secrets.CRATES_IO }}
- name: Build binaries in "release" mode
run: cargo build -r
- name: "Package for crates.io"
run: cargo package # publishes a package as a tarball
- name: "Publish to crates.io"
run: cargo publish # publishes your crate as a library that can be added as a dependency
- name: Upload release artifact
uses: actions/upload-artifact@v4
with:
name: topalias-rust
path: target/${{ matrix.BUILD_TARGET }}/topalias-rust
- uses: actions/checkout@v4
- name: Download release artifact
uses: actions/download-artifact@v4
with:
name: topalias-rust
path: .topalias-rust
- name: Publish built binary to GitHub releases
- run: |
gh release create --generate-notes ./topalias-rust/topalias-rust#topalias-rust