transition 0.1.2

Allows to visualize the execution and result of code using LED light blink(1)
Documentation
name: cd

on:
  push:
    tags:
      - "v*"

jobs:
  publish-cargo:
    name: Publishing to Cargo
    runs-on: ubuntu-latest
    steps:
      - name: Install libusb-1.0
        run: sudo apt-get install libusb-1.0
      - uses: actions/checkout@master
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          override: true
      - uses: actions-rs/cargo@v1
        with:
          command: publish
          args: --token ${{ secrets.CARGO_API_KEY }} --allow-dirty