0

Update publish-python-sdk.yml

This commit is contained in:
rafaelsideguide 2024-06-06 11:20:21 -03:00
parent f9643bfa65
commit 2744e3d4b9

View File

@ -27,11 +27,19 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools wheel twine build requests packaging
- name: Check if version is incremented
id: check_version
- name: Run version check script
id: version_check_script
run: |
VERSION_INCREMENTED=$(python .github/scripts/check_version_has_incremented.py python ./apps/python-sdk/firecrawl firecrawl-py)
echo "VERSION_INCREMENTED=$VERSION_INCREMENTED" >> $GITHUB_ENV
- name: Debug output of version check
run: |
echo "Output of VERSION_INCREMENTED: '${{ env.VERSION_INCREMENTED }}'"
- name: Set published version environment variable
if: env.VERSION_INCREMENTED == 'true'
run: |
echo "Published Version: ${{ env.VERSION_INCREMENTED }}"
- name: Build the package