Skip to content

Release v0.1.38 popup install guidance #16

Release v0.1.38 popup install guidance

Release v0.1.38 popup install guidance #16

Workflow file for this run

name: PyPI 发布
on:
workflow_dispatch:
push:
tags:
- "v*"
permissions:
contents: read
id-token: write
jobs:
publish-pypi-sdk:
runs-on: ubuntu-latest
environment: pypi
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: "3.14"
cache: "pip"
- name: Test Python SDK
working-directory: packages/open-browser-use-python
run: python -m unittest
- name: Build Python SDK distributions
working-directory: packages/open-browser-use-python
run: |
python -m pip install --upgrade build
python -m build
- name: Publish SDK package to PyPI
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # release/v1
with:
packages-dir: packages/open-browser-use-python/dist/
skip-existing: true