Update pypi.yaml #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PyPI | ||
on: | ||
pull_request: | ||
push: | ||
tags: | ||
- '*' | ||
jobs: | ||
PyPIPoetryPublish: | ||
name: PyPI Poetry Publish | ||
uses: uc-cdis/.github/.github/workflows/python_package_index_publish.yaml@fix/pypi | ||
Check failure on line 10 in .github/workflows/pypi.yaml GitHub Actions / PyPIInvalid workflow file
|
||
with: | ||
PYTHON_VERSION: '3.9' | ||
# this will attempt push to test PyPI first and only push to prod if it works | ||
DO_TEST_PUBLISH_FIRST: true | ||
secrets: | ||
PYPI_TEST_API_TOKEN: ${{ secrets.PYPI_TEST_API_TOKEN }} | ||
PYPI_PROD_API_TOKEN: ${{ secrets.PYPI_PROD_API_TOKEN }} |