Merge pull request #1449 from Agenta-AI/all-contributors/add-Drewski2222 #235
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: Publish to PyPI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set working directory | |
run: cd ${{ github.workspace }} | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
- name: Check for agenta version changes | |
id: version_check | |
run: | | |
# # Check if there are any tags in the repository | |
# if [ -z "$(git tag -l)" ]; then | |
# echo "No tags found. Skipping version check." | |
# exit 78 | |
# fi | |
# Navigate to the cli directory | |
cd ${{ github.workspace }}/agenta-cli | |
# Verify that the pyproject.toml file exists | |
if [ ! -f pyproject.toml ]; then | |
echo "pyproject.toml file not found. Exiting..." | |
exit 1 | |
fi | |
previous_version=$(git describe --abbrev=0 --tags) | |
current_version=$(poetry version --no-interaction | awk '{print $2}') | |
if [ "$previous_version" == "$current_version" ]; then | |
echo "No version change detected. Skipping package publication." | |
exit 78 | |
fi | |
echo "::set-output name=version_bumped::true" | |
continue-on-error: true | |
- name: Build and publish agenta to PyPI | |
if: steps.version_check.outputs.version_bumped == 'true' | |
run: | | |
# Navigate to the cli directory | |
cd ${{ github.workspace }} | |
# Build and publish agenta-cli | |
cd agenta-cli | |
poetry build | |
poetry publish --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} | |
continue-on-error: true |