Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

🔖 bump version 1.0.0 #28

🔖 bump version 1.0.0

🔖 bump version 1.0.0 #28

Workflow file for this run

name: Build and publish to PyPI
on:
push:
tags:
- v*
workflow_dispatch:
jobs:
build-n-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- 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
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}