beekeeper 0.3.1

A full-featured worker pool library for parallelizing tasks
Documentation
name: Manage Release PRs and Publish Crates

permissions:
  pull-requests: write
  contents: write
  id-token: write  # crates.io trusted publishing (OIDC); no CARGO_REGISTRY_TOKEN needed

on:
  push:
    branches:
      - main

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4
        with:
          fetch-depth: 0
          token: ${{ secrets.RELEASE_PLZ_TOKEN }}
      - name: Install Rust toolchain
        uses: dtolnay/rust-toolchain@stable
      - name: Run release-plz
        uses: release-plz/action@v0.5
        env:
          GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}