jwt-hack 2.5.0

Hack the JWT (JSON Web Token) - A tool for JWT security testing and token manipulation
Documentation
---
name: Homebrew tap Publish
on:
  release:
    types: [published]
jobs:
  homebrew-releaser:
    runs-on: ubuntu-latest
    name: homebrew-releaser
    steps:
      - name: Release jwt-hack to Homebrew tap
        uses: Justintime50/homebrew-releaser@v3
        with:
          homebrew_owner: hahwul
          homebrew_tap: homebrew-jwt-hack
          formula_folder: Formula
          github_token: ${{ secrets.jwthack_PUBLISH_TOKEN }}
          commit_owner: hahwul
          commit_email: hahwul@gmail.com
          depends_on: |
            "rust"
          install: |
            system "cargo build --release"
            bin.install "target/release/jwt-hack"
          test: system "{bin}/jwt-hack", "-V"
          update_readme_table: true
          skip_commit: false
          debug: false