Skip to content

calendar metal early close (#52) #24

calendar metal early close (#52)

calendar metal early close (#52) #24

Workflow file for this run

name: Upload Python Package to PyPI
on:
push:
tags:
- "v*"
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine build
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python3 -m build
python3 -m twine upload --repository pypi dist/*