zsh-plugin-cli 0.2.1

A command-line tool to generate new Zsh plugins.
name: Release to crates.io

on:
  push:
    tags:
      - 'v[0-9]+.[0-9]+.[0-9]+'
      - 'v[0-9]+.[0-9]+.[0-9]+-*'

env:
  CARGO_TERM_COLOR: always
  CLICOLOR: 1
  RUST_BACKTRACE: 1

jobs:
  release-plz:
    name: Release-plz
    runs-on: ubuntu-latest
    steps:
    - name: Checkout repository
      uses: actions/checkout@v6
      with:
        fetch-depth: 0
        token: ${{ secrets.GITHUB_TOKEN }}
      
    - name: Install Rust
      uses: actions-rs/toolchain@v1.0.6
      with:
        toolchain: stable
        profile: minimal
        override: true
        
     
    - name: Run cargo release-plz
      uses: MarcoIeni/release-plz-action@v0.5
      env:
        # This can help you tagging the github repository
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        # This can help you publish to crates.io
        CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}