1. add owl agent example #44
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: CI/CD Pipeline | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
cd python | |
pip install uv | |
uv pip install --system -r requirements.txt | |
pip install setuptools wheel twine | |
- name: Build package | |
run: | | |
cd python | |
pip3 install -e . | |
python setup.py sdist bdist_wheel | |
- name: Publish to PyPI | |
if: github.ref == 'refs/heads/main' | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
run: | | |
cd python | |
twine upload --repository-url https://upload.pypi.org/legacy/ dist/* | |