RDA-3 fix the hap.py validation pipeline #3686
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: Package | |
on: | |
# Building on pull-requests, manual dispatch, and pushes to main; but restricting | |
# publishing only to main pushes and manual dispatch with `if`s in specific steps. | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
package: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Build | |
run: python setup.py sdist | |
- name: Test install | |
run: pip install dist/* | |
- name: Test import | |
run: python -c "import cpg_workflows" | |
- name: Publish the wheel to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
if: ${{ github.event_name != 'pull_request' }} | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
packages_dir: dist/ | |
skip_existing: true |