ci: updated pyproject.toml #5
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 Python Package | |
on: | |
push: | |
branches: [ main, test, develop ] | |
pull_request: | |
types: | |
- opened | |
env: | |
PACKAGE_NAME: crawlab-sdk | |
jobs: | |
build_and_publish: | |
runs-on: ubuntu-latest | |
outputs: | |
is_new_version: ${{ steps.check_version.outputs.is_new_version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
id: install_dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install | |
- name: Check version | |
id: check_version | |
run: | | |
version=$(poetry version -s) | |
status_code=$(curl -o /dev/null -s -w "%{http_code}" https://pypi.org/project/${{ env.PACKAGE_NAME }}/${version}/) | |
if [ "$status_code" = "404" ]; then | |
echo "is_new_version=true" >> $GITHUB_OUTPUT | |
else | |
echo "is_new_version=false" >> $GITHUB_OUTPUT | |
fi | |
- name: Build and publish | |
id: publish | |
if: ${{ always() && steps.check_version.outputs.is_new_version == 'true' }} | |
run: | | |
# Ensure we're in the directory containing pyproject.toml | |
ls -la | |
poetry build | |
poetry publish |