cleanup-branches 0.1.0

A CLI tool to delete local Git branches that are already merged into a target branch
name: Release

on:
  push:
    tags:
      - "v*"

jobs:
  upload-assets:
    name: Release (${{ matrix.target }})
    runs-on: ubuntu-latest
    permissions:
      contents: write
    strategy:
      fail-fast: false
      matrix:
        include:
          - target: x86_64-unknown-linux-musl
    steps:
      - uses: actions/checkout@v4

      - uses: taiki-e/upload-rust-binary-action@v1
        with:
          bin: cleanup-branches
          target: ${{ matrix.target }}
          token: ${{ secrets.GITHUB_TOKEN }}