algorithmz 1.1.3

This is the corresponding implemenation of the python module of the same name.
Documentation
name: Publish

on:
  workflow_dispatch: {}
  workflow_run:
    workflows: ["Test"]
    types:
      - completed

env:
  CARGO_TERM_COLOR: always

jobs:
  publish:
    runs-on: ubuntu-latest
    # Only run if triggered by workflow_run AND Workflow A succeeded
    if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }}
    steps:
    - uses: actions/checkout@v4
    - name: Build
      run: cargo build --lib --verbose
    - name: Crates.io login
      run: echo "${{ secrets.CRATE_TOKEN }}" | cargo login 
    - name: Publish to crates.io
      run: cargo publish --verbose