Skip to content

Merge pull request #7 from squadrun/ayush/autopublish #1

Merge pull request #7 from squadrun/ayush/autopublish

Merge pull request #7 from squadrun/ayush/autopublish #1

Workflow file for this run

name: pypi push
'on':
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.5.9'
- run: python -m pip install -q twine build && python3 -m build && python3 -m twine upload dist/* -u __token__ -p "${{ secrets.PYPI_API_TOKEN }}"