0.21.8-rc10 #28
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: Publish Release to PyPI | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.11.3' | |
- name: Install poetry | |
uses: abatilo/[email protected] | |
- name: Install project dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
make install-extras | |
- name: Set package version | |
run: poetry version "${{ github.event.release.tag_name }}" | |
- name: Build the Package | |
run: poetry build | |
- name: Update Release with Built Package | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: "${{ github.event.release.tag_name }}" | |
files: | | |
dist/* | |
- name: run tests | |
# Only run tests for skillsnetwork since cv studio tests not working from CI | |
run: poetry run pytest tests/ -k 'test_skillsnetwork.py' | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |