Skip to content

change repository URL for publish #4

change repository URL for publish

change repository URL for publish #4

Workflow file for this run

name: Publish Package to Test PyPi
on: [push]
jobs:
build:
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
- name: Set up Python 3.12.0
uses: actions/setup-python@v4
with:
python-version: 3.12.0
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- run: pip install virtualenv
- run: virtualenv venv
- run: source venv/bin/activate
- run: pip install setuptools
- run: python setup.py sdist
- run: pip wheel . -w dist
- run: python -m pip install --upgrade twine
- run: twine upload --repository-url https://test.pypi.org/legacy/ dist/*