Skip to content

testing testpypi automated publish #5

testing testpypi automated publish

testing testpypi automated publish #5

Workflow file for this run

name: Publish to PyPI
on: #trigger event
push:
branches:
- dev/update_to_1.4.2_automate_publishing
jobs:
build:
name: Build distribution 📦
#if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Extract Version from tag
id: extract_version
run: echo ::set-output name=VERSION::${{ github.event.release.tag_name }}
- name: Update version in pyproject.toml
run: sed -i "s/version = .*/version = \"${{ steps.extract_version.outputs.VERSION }}\"/" pyproject.toml
- name: Install pypa/build
run: |
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@v3
with:
name: python-package-distributions
path: dist/
publish-to-testpypi:
name: Publish
#if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
#if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
needs:
- build
runs-on: ubuntu-latest
environment:
name: testpypi
url: https://test.pypi.org/p/neuromancer-test
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download all the dists
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Publish distribution 📦 to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
password: ${{ secrets.TEST_PYPI_API_TOKEN }}