update version: 0.1.3-rc.3 -> 0.1.3 #31
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: Upload artifact to crates.io | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: crates-io | |
defaults: | |
run: | |
working-directory: core | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build check | |
run: cargo build --verbose | |
- name: Unit Testing | |
run: | | |
cargo test | |
cargo test --features blocking | |
- name: Try packaging | |
run: cargo publish --dry-run | |
- name: Show files will be included | |
run: cargo package --list | |
- name: Upload artifact to crates.io | |
run: cargo publish | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |