Skip to content

fix(models): Adapt to removal of defects in advisor model #46

fix(models): Adapt to removal of defects in advisor model

fix(models): Adapt to removal of defects in advisor model #46

Workflow file for this run

# SPDX-FileCopyrightText: 2025 Helio Chissini de Castro <heliocastro@gmail.com>
#
# SPDX-License-Identifier: MIT
name: Publish
on:
push:
tags:
- 'v*'
paths-ignore:
- '**.md'
jobs:
publish:
name: Publish Python Ort on PyPI
runs-on: ubuntu-24.04
environment:
name: PyPI
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
with:
enable-cache: true
python-version: '3.10' # Minimal supported Python
activate-environment: true
- name: Build 📦 package
shell: bash
run: |
uv build
- name: Upload artifacts
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: 'build-artifacts-python-3.10'
path: dist/*
- name: Publish PyPI 📦 package
shell: bash
run: |
uv publish