ppfuzz 0.1.0

___ ___ ___ | x | x | __/ _.__.___ | _| _| _| | |/ // / |_| |_| |_|`___/__/__/ Prototype Pollution Fuzzer @dwisiswant0
Documentation
name: "Publish"
on:
  push:
    tags:
      - v*

jobs:
  crates:
    name: Publish Crate
    runs-on: ubuntu-latest
    steps:
      - name: "Check out code"
        uses: actions/checkout@v2

      - name: "Caching cargo & rustup"
        uses: actions/cache@v2
        with:
          path: |
            ~/.cargo/registry
            ~/.cargo/git
            ~/.rustup
            target
          key: ${{ runner.os }}-stable

      - name: "Setup toolchain"
        run: rustup install stable

      - name: Build
        run: cargo build --verbose

      - name: "Publish to crates.io"
        run: cargo publish
        env:
          CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}