Skip to content

1. add owl agent example #44

1. add owl agent example

1. add owl agent example #44

Workflow file for this run

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/*