firecrawl/.github/archive/publish-python-sdk.yml

48 lines
1.3 KiB
YAML
Raw Normal View History

2024-06-06 16:49:22 +00:00
name: Publish Python SDK
2024-06-06 13:53:55 +00:00
2024-06-06 18:36:20 +00:00
on: []
2024-06-06 13:53:55 +00:00
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine build requests packaging
2024-06-06 14:21:45 +00:00
- 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
2024-06-06 13:53:55 +00:00
2024-06-06 14:38:16 +00:00
- name: Build the package
if: ${{ env.VERSION_INCREMENTED == 'true' }}
run: |
python -m build
2024-06-06 14:43:44 +00:00
working-directory: ./apps/python-sdk
2024-06-06 14:38:16 +00:00
- name: Publish to PyPI
if: ${{ env.VERSION_INCREMENTED == 'true' }}
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
2024-06-06 16:27:31 +00:00
twine upload dist/*
working-directory: ./apps/python-sdk