hannibal 0.17.2

A small actor library
Documentation
name: Release

on:
  workflow_dispatch:

jobs:
  release:
    name: Publish & Release
    runs-on: ubuntu-latest
    environment: release
    permissions:
      contents: write
      id-token: write
    steps:
      - uses: actions/checkout@v4
        with:
          ref: main
          fetch-depth: 0
          fetch-tags: true

      - uses: dtolnay/rust-toolchain@stable

      - name: Get latest tag
        id: tag
        run: |
          TAG=$(git describe --tags --abbrev=0)
          if [ -z "${TAG}" ]; then
            echo "Error: no tag found. Did you forget to push your tag?"
            exit 1
          fi
          echo "tag=${TAG}" >> "$GITHUB_OUTPUT"

      - name: Validate tag matches Cargo.toml
        run: |
          CARGO_VERSION="v$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[0].version')"
          TAG="${{ steps.tag.outputs.tag }}"
          if [ "${CARGO_VERSION}" != "${TAG}" ]; then
            echo "Error: Cargo.toml version (${CARGO_VERSION}) does not match tag (${TAG})"
            exit 1
          fi
          echo "In sync: ${TAG}"

      - name: Check no unreleased commits after tag
        run: |
          curl -sSfL https://github.com/convco/convco/releases/download/v0.6.4/convco-ubuntu.zip -o convco-ubuntu.zip
          echo "Downloaded hash: $(sha256sum convco-ubuntu.zip)"
          echo "d6e43a1975949ef05d31bb1ac64fdd7c2dbc18b0b65df075c16dc296b8153be7  convco-ubuntu.zip" | sha256sum -c
          zcat convco-ubuntu.zip > convco
          chmod +x convco
          rm convco-ubuntu.zip
          NEXT=$(./convco version --bump HEAD)
          TAG="${{ steps.tag.outputs.tag }}"
          rm convco
          if [ "v${NEXT}" != "${TAG}" ]; then
            echo "Error: convco expects next version to be v${NEXT} but tag is ${TAG}"
            echo "There may be unreleased breaking changes or features after ${TAG}"
            exit 1
          fi

      - uses: rust-lang/crates-io-auth-action@v1
        id: auth

      - name: Publish to crates.io
        run: cargo publish --locked --workspace
        env:
          CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}

      - name: Create GitHub Release
        uses: softprops/action-gh-release@v2
        with:
          tag_name: ${{ steps.tag.outputs.tag }}
          generate_release_notes: true