Build and publish choice-learn on PyPI #53
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 and publish choice-learn on PyPI | |
on: | |
workflow_run: | |
workflows: [Build and publish choice-learn on TestPyPI] | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
test-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python, choice-learn & run tests | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install from TestPyPI & run tests with installed package | |
id: install | |
run: | | |
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ choice-learn | |
cd ../ | |
echo ${{ github.event.release.tag_name }} | |
python choice-learn/tests/manual_run.py | |
cd choice-learn | |
echo "b" | |
git fetch --all | |
BRANCH=$(git branch --list -r "origin/release_*" | tr '*' ' ') | |
echo $BRANCH | |
BRANCH="${BRANCH:9}" | |
echo $BRANCH | |
echo "BRANCH=$BRANCH" >> $GITHUB_OUTPUT | |
- name: publish to PyPI | |
uses: ./.github/actions/publish | |
with: | |
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PACKAGE_DIRECTORY: "./choice_learn/" | |
PYTHON_VERSION: "3.9" | |
PUBLISH_REGISTRY_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
PUBLISH_REGISTRY_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
UPDATE_CODE_VERSION: false | |
BRANCH: ${{ steps.install.outputs.BRANCH }} |