use new pydantic-xml / publishing test #1
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: Building & Publishing | |
on: | |
push: | |
tags: | |
- "v*" | |
permissions: | |
contents: read | |
jobs: | |
# Release to PyPI after a RELEASE gets PUBLISHED in @spacetelescope/astrocut/main | |
publish-to-pypi: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 | |
name: Publish to PyPI | |
# We only want to upload to PyPI after a new release has been published on the @spacetelescope/astrocut repo | |
if: github.repository_owner == 'spacetelescope' && github.event_name == 'push' | |
with: | |
test_extras: test | |
test_command: pytest | |
secrets: | |
pypi_token: ${{ secrets.PYPI_PASSWORD_STSCI_MAINTAINER }} |