Skip to content

user interface changed, there was a mishap with the existing parameters #5

user interface changed, there was a mishap with the existing parameters

user interface changed, there was a mishap with the existing parameters #5

name: Publish TimeForge to PyPI via GitHub
on:
push:
branches:
- main
jobs:
build-n-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: setup environment
run: python -m pip install --upgrade build twine
- name: Build source and wheel distributions
run: make build
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_SECRET_KEY }}