branch ris-custom-ramps contains edits to include CRNL and custom ramps #716
Workflow file for this run
This file contains hidden or 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: | |
| build: | |
| uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@e97344095b099e1d729fe97429078c9975921d8a # v2.6.2 | |
| with: | |
| env: | | |
| FFTW_DIR: /opt/homebrew/opt/fftw/lib/ | |
| targets: | | |
| # Linux wheels | |
| - cp3*[!t]-manylinux_x86_64 | |
| # MacOS wheels | |
| - cp3*[!t]-macosx_x86_64 | |
| # MacOS arm64 wheels | |
| - cp3*[!t]-macosx_arm64 | |
| sdist: true | |
| test_command: python -c "from romanisim import ramp_fit_casertano" | |
| upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} | |
| secrets: | |
| pypi_token: ${{ secrets.PYPI_PASSWORD_STSCI_MAINTAINER }} |