uberbyte 0.6.1

Bit manipulation for dummies
Documentation
name: Publish

on:
    push:
        tags: 
            - 'v*' # limited the triggering tags to tags starting with v like v0.0.1.
    workflow_dispatch:

env:
    CARGO_TERM_COLOR: always
    
jobs:
    publish_crates:
        name: 
        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

            - run: cargo publish --token ${CRATES_TOKEN}
              env:
                CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}