mirror of
https://github.com/extism/extism.git
synced 2026-04-23 03:00:11 -04:00
37 lines
807 B
YAML
37 lines
807 B
YAML
on:
|
|
workflow_dispatch:
|
|
|
|
name: Release Python SDK
|
|
|
|
jobs:
|
|
release-sdks:
|
|
name: release-python
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Python env
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.9"
|
|
check-latest: true
|
|
- name: Run image
|
|
uses: abatilo/actions-poetry@v2
|
|
|
|
- name: Build Python Host SDK
|
|
run: |
|
|
cd python
|
|
cp ../LICENSE .
|
|
make clean
|
|
make prepare
|
|
poetry build
|
|
|
|
- name: Release Python Host SDK
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
user: ${{ secrets.PYPI_API_USER }}
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
packages_dir: python/dist/
|
|
|