Skip to content

Suppress linter error #125

Suppress linter error

Suppress linter error #125

name: Build, test, and publish package artifact to test.pypi.org
on:
push:
jobs:
build-test:
name: Build and test package
uses: ./.github/workflows/build-test.yml
upload-package:
name: Upload package artifacts to test.pypi.org
runs-on: ubuntu-latest
needs:
- build-test
steps:
- name: Fetch package artifact
id: download
uses: actions/download-artifact@v4
- name: Publish package to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository-url: https://test.pypi.org/legacy/
skip-existing: true