rcal-936 Update skycell_asn docs and add skycell_asn as a script at install time #1761
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: build | |
on: | |
release: | |
types: [ released ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
check: | |
name: check that `requirements-sdp.txt` is populated | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- if: github.event_name == 'release' | |
run: grep -v '^ *#' requirements-sdp.txt | |
build: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 | |
needs: [ check ] | |
with: | |
upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} | |
secrets: | |
pypi_token: ${{ secrets.PYPI_PASSWORD_STSCI_MAINTAINER }} |