Skip to content

Commit

Permalink
ci: publish on test pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelrince committed Apr 17, 2024
1 parent 0e9c54a commit 5439457
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/publish-testpypi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Publish package on Test PyPI

on:
push:
tags:
- '*.*.*'

jobs:
build:
runs-on: ubuntu-latest
steps:
# check-out repo and set-up python
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: "3.9"

# install & configure poetry
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true

# configure credentials
- name: Configure credentials
run: |
poetry config repositories.testpypi https://test.pypi.org/legacy/
poetry config pypi-token.testpypi ${{ secrets.TEST_PYPI_API_KEY }}
# build package
- name: Build package
run: poetry build

# publish package
- name: Publish package
run: poetry publish --repository testpypi

0 comments on commit 5439457

Please sign in to comment.