Skip to content

bump 0.1.6

bump 0.1.6 #21

Workflow file for this run

# adapted from https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
# with changes from https://blog.pypi.org/posts/2023-04-20-introducing-trusted-publishers/
name: Publish to TEST PyPI
on:
push:
tags:
- '**'
jobs:
build-and-pypi-publish:
name: Build and upload release to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install Poetry
run: >-
python -m
pip install
poetry
--user
- name: Build Setup-Selenium-Testing
run: >-
python -m
poetry
build
- name: Publish distribution to TEST PyPI # only on new tag push
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/