printf-compat 0.4.0

printf reimplemented in Rust
Documentation
on:
  push:
    branches:
      - master
      
name: Release

permissions:
  # Required for pushing the release tag.
  contents: write
  # Required for crates.io Trusted Publishing.
  id-token: write

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: rust-lang/crates-io-auth-action@v1
        id: auth
      - run: cargo install auto-release
      - run: auto-release -p printf-compat --condition subject
        env:
          CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}