From 336d70fd3f41e03d939f87b3b90e7a23a6d31ed9 Mon Sep 17 00:00:00 2001 From: Brett Date: Mon, 26 Feb 2024 14:04:25 -0500 Subject: [PATCH] use openastronomy github action for release --- .github/workflows/publish-to-pypi.yml | 30 +++++++++++++-------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 8aca86fe9..708d6c692 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -1,16 +1,14 @@ -name: Publish to PyPI - -on: - release: - types: [released] - -jobs: - publish: - uses: spacetelescope/action-publish_to_pypi/.github/workflows/workflow.yml@master - with: - test: false - build_platform_wheels: false # Set to true if your package contains a C extension - secrets: - user: ${{ secrets.PYPI_USERNAME_ASDF_MAINTAINER }} - password: ${{ secrets.PYPI_PASSWORD_ASDF_MAINTAINER }} # WARNING: Do not hardcode secret values here! If you want to use a different user or password, you can override this secret by creating one with the same name in your Github repository settings. - test_password: ${{ secrets.PYPI_PASSWORD_ASDF_MAINTAINER_TEST }} +name: Publish to PyPI + +on: + release: + types: [released] + workflow_dispatch: + +jobs: + publish: + uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 + with: + upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} + secrets: + pypi_token: ${{ secrets.PYPI_PASSWORD_ASDF_MAINTAINER }}