Skip to content

When there's a finding, also save the method name #7

When there's a finding, also save the method name

When there's a finding, also save the method name #7

Workflow file for this run

name: Publish Python Package
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
defaults:
run:
working-directory: python
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: Install build tools
run: pip install build twine
- name: Build distribution
run: python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
twine upload dist/*