workflows: Add push tag action #26
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: CI | |
on: | |
pull_request: | |
push: | |
tags: ["v*"] | |
branches: | |
- master | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
style: | |
name: Check Style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- run: cargo fmt --all --check | |
#clippy_check: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Run Clippy | |
# run: cargo clippy --all-targets --all-features | |
msrv: | |
name: Check MSRV | |
needs: [style] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get MSRV from package metadata | |
id: msrv | |
run: grep rust-version Cargo.toml | cut -d '"' -f2 | sed 's/^/version=/' >> $GITHUB_OUTPUT | |
- name: Install Rust (${{ steps.metadata.outputs.msrv }}) | |
id: msrv-toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ steps.msrv.outputs.version }} | |
- name: Pin some dependencies for MSRV | |
run: | | |
cargo update --package tokio --precise 1.38.1 | |
cargo update --package tokio-util --precise 0.7.11 | |
cargo update --package hashbrown --precise 0.15.0 | |
- run: cargo check -p rhttp2 | |
crates: | |
name: Release | |
runs-on: ubuntu-latest | |
environment: Linux | |
needs: [style] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get tag | |
if: startsWith(github.ref, 'refs/tags/') | |
id: tag | |
uses: dawidd6/action-get-tag@v1 | |
with: | |
strip_v: true | |
- name: Tag Check | |
run: | | |
echo "tag=${{ steps.tag.outputs.tag }}" >> $GITHUB_ENV | |
echo "tag=${{ steps.tag.outputs.tag }}" >> $GITHUB_OUTPUT | |
if [ -z "${{ steps.tag.outputs.tag }}" ]; then | |
echo "tag=latest" >> $GITHUB_OUTPUT | |
echo "tag=latest" >> $GITHUB_ENV | |
fi | |
- uses: katyo/publish-crates@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
ignore-unpublished-changes: true | |
- name: Upload binaries to GitHub Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
token: ${{ secrets.CR_PAT }} | |
prerelease: ${{ contains(github.ref, 'alpha') || contains(github.ref, 'beta') }} | |
generate_release_notes: true |