Skip to content

Bump version to 0.1.1 and update User-Agent to include repository URL #13

Bump version to 0.1.1 and update User-Agent to include repository URL

Bump version to 0.1.1 and update User-Agent to include repository URL #13

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install build dependencies
run: python -m pip install -U setuptools wheel build
- name: Build
run: python -m build .
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true
attestations: true