duplicate_destroyer 0.0.8

Finds and annihilates duplicate directories.
Documentation
on:
  push:
    tags:
      - 'v*'
  workflow_dispatch:

name: Release

jobs:
  publish:
    name: Publish
    runs-on: ubuntu-latest
    steps:
      - name: Checkout sources
        uses: actions/checkout@v2

      - name: Install stable toolchain
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: stable
          override: true

      - name: Test the release
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --verbose

      - name: Publish release
        run: cargo publish --token ${CRATES_TOKEN} --all-features
        env:
          CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}