Skip to content

Commit

Permalink
Merge pull request #112 from braingram/release_workflow
Browse files Browse the repository at this point in the history
use openastronomy github action for release
  • Loading branch information
braingram authored Feb 27, 2024
2 parents e2a3c8d + 13b9940 commit 10a757c
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ name: Publish to PyPI
on:
release:
types: [released]
workflow_dispatch:

jobs:
publish:
uses: spacetelescope/action-publish_to_pypi/.github/workflows/workflow.yml@master
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1
with:
test: false
build_platform_wheels: false # Set to true if your package contains a C extension
upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }}
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 }}
pypi_token: ${{ secrets.PYPI_PASSWORD_ASDF_MAINTAINER }}

0 comments on commit 10a757c

Please sign in to comment.