From af9e6c94a00d90cde54c8332049aeee22fdc7c69 Mon Sep 17 00:00:00 2001 From: rafaelsideguide <150964962+rafaelsideguide@users.noreply.github.com> Date: Thu, 6 Jun 2024 10:53:55 -0300 Subject: [PATCH] Create publish-python-sdk.yml --- .github/workflows/publish-python-sdk.yml | 49 ++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/publish-python-sdk.yml diff --git a/.github/workflows/publish-python-sdk.yml b/.github/workflows/publish-python-sdk.yml new file mode 100644 index 0000000..814526d --- /dev/null +++ b/.github/workflows/publish-python-sdk.yml @@ -0,0 +1,49 @@ +name: Publish Python SDK + +on: + pull_request: + branches: + - main + +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 + + - name: Check if version is incremented + id: check_version + 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: Build the package + if: env.VERSION_INCREMENTED == 'true' + run: | + python -m build + + - name: Publish to PyPI + if: env.VERSION_INCREMENTED == 'true' + env: + TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} + TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + run: | + echo "Publishing to PyPI" +# twine upload dist/* +