Skip to content

Updated workflow for test publish - uses PyPI token #11

Updated workflow for test publish - uses PyPI token

Updated workflow for test publish - uses PyPI token #11

Workflow file for this run

name: Publish to TestPyPi
on:
workflow_dispatch:
jobs:
build:
name: Build distribution 📦
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
publish-to-testpypi:
name: >-
Publish Python 🐍 distribution 📦 to TestPyPI
needs:
- build
runs-on: ubuntu-latest
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Publish distribution 📦 to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
user:__token__

Check failure on line 53 in .github/workflows/publish-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish-test.yml

Invalid workflow file

You have an error in your yaml syntax on line 53
password: ${{secrets.TEST_PYPI_PASSWORD}}
repository_url: https://test.pypi.org/legacy/