Skip to content

Merge pull request #17 from jacanchaplais/feature/edge-efficient-16 #22

Merge pull request #17 from jacanchaplais/feature/edge-efficient-16

Merge pull request #17 from jacanchaplais/feature/edge-efficient-16 #22

Workflow file for this run

name: Publish Python
on:
push:
tags:
- '*'
jobs:
build-n-publish:
name: Build and publish to PyPI
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with: { fetch-depth: 0 }
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}