* Bump version from 0.9.0 to 0.9.1 in pyproject.toml and update google-genai dependency to >=0.1.0 * Bump version from 0.9.1 to 0.9.2 in pyproject.toml * Update google-genai dependency version to >=0.8.0 in pyproject.toml * loc file * Update pyproject.toml to version 0.9.3, restructure dependencies, and modify author format. Remove outdated Google API key note from README.md. * upgrade poetry and ruff
38 lines
1 KiB
YAML
38 lines
1 KiB
YAML
name: Release to PyPI
|
|
|
|
on:
|
|
push:
|
|
tags: ["v*.*.*"]
|
|
|
|
env:
|
|
POETRY_VERSION: "2.1.2"
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: write
|
|
contents: write
|
|
environment:
|
|
name: release
|
|
url: https://pypi.org/p/zep-cloud
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install poetry
|
|
run: pipx install poetry==$POETRY_VERSION
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.10"
|
|
cache: "poetry"
|
|
- name: Compare pyproject version with tag
|
|
run: |
|
|
TAG_VERSION=${GITHUB_REF#refs/tags/}
|
|
if [ "$TAG_VERSION" != "v$(poetry version --short)" ]; then
|
|
echo "Tag version $TAG_VERSION does not match the project version $(poetry version --short)"
|
|
exit 1
|
|
fi
|
|
- name: Build project for distribution
|
|
run: poetry build
|
|
- name: Publish package distributions to PyPI
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|