bump aryn sdk version to 0.1.10 (#1059) #13
Workflow file for this run
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 aryn-sdk | |
on: | |
push: | |
tags: | |
- "sdk-v*" | |
permissions: | |
contents: write | |
jobs: | |
release: | |
name: Upload to PyPI | |
runs-on: blacksmith-4vcpu-ubuntu-2204 | |
environment: | |
name: PyPI | |
url: https://pypi.org/project/aryn-sdk/ | |
permissions: | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry | |
- uses: useblacksmith/setup-python@v6 | |
with: | |
python-version: "3.11" | |
cache: "poetry" | |
- name: Install | |
run: poetry install | |
working-directory: lib/aryn-sdk | |
- name: build | |
run: poetry build | |
working-directory: lib/aryn-sdk | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
verbose: true | |
packages-dir: lib/aryn-sdk/dist |