Skip to content

Update testpypi.yml #10

Update testpypi.yml

Update testpypi.yml #10

Workflow file for this run

name: Publish to TestPyPI using Poetry
# trigger upload on a new push to master
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
environment:
name: testpypi
url: https://pypi.org/p/openwfs
# enable openid authentication for PyPi
permissions:
id-token: write # Required for OIDC
steps:
# Checkout the repository
- name: Check out the repository
uses: actions/checkout@v3
# Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
# Install Poetry
- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
version: '1.8.3'
# Install dependencies and build the project
- name: Install dependencies and build package
run: |
poetry install
poetry build
# Publish to TestPyPI
- name: Publish to TestPyPI
run: |
poetry config repositories.testpypi https://test.pypi.org/legacy/
poetry publish --repository testpypi