Skip to content

bump aryn sdk version to 0.1.10 (#1059) #13

bump aryn sdk version to 0.1.10 (#1059)

bump aryn sdk version to 0.1.10 (#1059) #13

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