name: release
on:
push:
tags:
- 'v*'
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
jobs:
verify:
name: verify (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: cargo test
run: cargo test --lib --all-features
publish:
name: publish to crates.io
needs: verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: check tag matches Cargo.toml version
shell: bash
run: |
TAG_VERSION="${GITHUB_REF_NAME#v}"
MANIFEST_VERSION=$(grep -m1 '^version = ' Cargo.toml | cut -d '"' -f2)
if [ "$TAG_VERSION" != "$MANIFEST_VERSION" ]; then
echo "::error::tag '$TAG_VERSION' does not match Cargo.toml version '$MANIFEST_VERSION'"
exit 1
fi
echo "tag/version match: $TAG_VERSION"
- name: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish
github-release:
name: github release
needs: publish
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: softprops/action-gh-release@v2
with:
name: ${{ github.ref_name }}
generate_release_notes: true