dockerfile-build 0.1.1

A Rust library to automate building Docker images from a local Dockerfile
Documentation
# https://pratikpc.medium.com/publishing-crates-using-github-actions-165ee67780e1
on:
  push:
    # Pattern matched against refs/tags
    tags:        
      - '*'           # Push events to every tag not containing /
      # Allow manual triggering
  workflow_dispatch:

jobs:
  publish:
    name: Publish
    # Specify OS
    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
        env:
          CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}