Skip to content

Unlink project from a specific boto3 version (#8) #15

Unlink project from a specific boto3 version (#8)

Unlink project from a specific boto3 version (#8) #15

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- '*'
jobs:
build-and-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
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 a package
run: |
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}