Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: Build and upload to PyPI

on:
workflow_dispatch: # run on request (no need for PR)
release:
types: [published]

# Declare default permissions as read only.
permissions: read-all

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install pypa/build
run: |
python -m pip install --upgrade build
- name: Build sdist
run: |
sed -i '/omz_tools/d' model_api/python/pyproject.toml
python -m build --sdist model_api/python/
- uses: actions/upload-artifact@v4
with:
name: artifact-sdist
path: model_api/python/dist/*.tar.gz
- name: Build wheel
run: |
sed -i '/omz_tools/d' model_api/python/pyproject.toml
python -m build --wheel model_api/python/
- uses: actions/upload-artifact@v4
with:
name: artifact-wheel
path: model_api/python/dist/*.whl

publish_package:
name: Publish package
needs: [build]
environment: pypi
runs-on: ubuntu-latest
permissions:
packages: write
contents: write
id-token: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: model_api/python/dist
pattern: artifact-*
merge-multiple: true
# to determine where to publish the package distribution to PyPI or TestPyPI
- name: Check tag
id: check-tag
uses: actions-ecosystem/action-regex-match@v2
with:
text: ${{ github.ref }}
regex: '^refs/tags/[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+rc[0-9]+|rc[0-9]+)?$'
- name: Upload package distributions to github
if: ${{ steps.check-tag.outputs.match != '' }}
uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: model_api/python/dist/*
tag: ${{ github.ref }}
overwrite: true
file_glob: true
- name: Publish package distributions to PyPI
if: ${{ steps.check-tag.outputs.match != '' }}
uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.3
- name: Publish package distributions to TestPyPI
if: ${{ steps.check-tag.outputs.match == '' }}
uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.3
with:
repository-url: https://test.pypi.org/legacy/
verbose: true
1 change: 0 additions & 1 deletion docs/source/guides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
:hidden:

./model-configuration
./releasing-to-PyPI
```
13 changes: 0 additions & 13 deletions docs/source/guides/releasing-to-PyPI.md

This file was deleted.

Loading