vanadin 0.1.0

Blazingly fast building and testing framework.
on:
  push:
    tags:
      - 'v*'
  workflow_dispatch:

env:
  CARGO_TERM_COLOR: always
  CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_TOKEN }}

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: Install cargo release
        run: cargo install cargo-release

      - name: Release
        run: |

          cargo release \
            --workspace \
            --execute \
            --no-confirm \
            --dependent-version fix \
            --no-tag \