Skip to content

Merge pull request #66 from dianagudu/api_versioning #52

Merge pull request #66 from dianagudu/api_versioning

Merge pull request #66 from dianagudu/api_versioning #52

name: publish-to-pypi
on:
push:
branches:
- 'master'
- 'prerel'
tags:
- v[0-9]+.[0-9]+.[0-9]+
jobs:
build-n-publish:
name: Build and publish Python distribution 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- name: Check out src from Git
uses: actions/checkout@master
- name: Get history and tags for SCM versioning to work
run: |
git fetch --prune --unshallow
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a source tarball
run: >-
python -m
build
--sdist
--outdir dist/
- name: Publish distribution 📦 to Test PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}