jwt-hack 2.5.0

Hack the JWT (JSON Web Token) - A tool for JWT security testing and token manipulation
Documentation
---
name: Release Assets
on:
  release:
    types: [published]
jobs:
  generate-sbom:
    runs-on: ubuntu-latest
    name: Generate and Upload SBOM
    steps:
      - name: Checkout repository
        uses: actions/checkout@v6
      - name: Install Rust toolchain
        uses: dtolnay/rust-toolchain@stable
        with:
          toolchain: stable
      - name: Install cargo-cyclonedx
        run: cargo install cargo-cyclonedx
      - name: Generate SBOM
        run: cargo cyclonedx --format xml --override-filename jwt-hack.cdx
      - name: Upload SBOM to release
        uses: softprops/action-gh-release@v2
        with:
          files: jwt-hack.cdx.xml
        env:
          GITHUB_TOKEN: ${{ secrets.jwthack_PUBLISH_TOKEN }}