Files
bake/.github/workflows/publish-pypi.yml
T
2019-09-16 08:35:58 -04:00

16 lines
299 B
YAML

name: Bake PyPI Distribution™
on: [tag]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}