Skip to content

Bump version: 0.1.4 → 0.1.5 #4

Bump version: 0.1.4 → 0.1.5

Bump version: 0.1.4 → 0.1.5 #4

Workflow file for this run

name: Publish Python Package
on:
push:
tags:
- 'v*' # This will trigger the workflow for any tag starting with 'v'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}