Skip to content

Merge pull request #17 from ocsf/compile-debugging #13

Merge pull request #17 from ocsf/compile-debugging

Merge pull request #17 from ocsf/compile-debugging #13

Workflow file for this run

name: Build and publish to PyPI
on:
push:
branches:
- main
jobs:
publish-to-pypi:
runs-on: ubuntu-latest
environment: release
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup python and poetry
uses: ./.github/actions/poetry
- name: Build and Publish
run: |
poetry publish -p ${{ secrets.PYPI_TOKEN }} -u __token__ --build
shell: bash