chore: release 4.7.0 #155
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: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
name: Publish | |
runs-on: ubuntu-22.04 | |
if: "startsWith(github.event.head_commit.message, 'chore: release')" | |
environment: | |
name: pypi | |
url: https://pypi.org/p/algoliasearch | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11.6 | |
- name: install poetry | |
shell: bash | |
run: pipx install poetry | |
- name: install dependencies | |
shell: bash | |
run: poetry install | |
- name: build client | |
run: poetry build | |
shell: bash | |
- name: Publish algoliasearch package to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |