-
Notifications
You must be signed in to change notification settings - Fork 91
70 lines (57 loc) · 1.88 KB
/
Copy pathpython-sdk-release.yml
File metadata and controls
70 lines (57 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# SPDX-FileCopyrightText: © 2025 Phala Network <dstack@phala.network>
#
# SPDX-License-Identifier: Apache-2.0
name: Publish Python SDK to PyPI
on:
push:
tags: ['python-sdk-v*']
workflow_dispatch:
inputs:
target:
description: 'Publish target'
required: true
default: 'pypi'
type: choice
options:
- pypi
- testpypi
permissions:
id-token: write
contents: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install PDM
run: pip install pdm
- name: Build distribution
working-directory: sdk/python
run: pdm build
- name: Parse version
id: version
run: echo "version=${GITHUB_REF_NAME#python-sdk-v}" >> "$GITHUB_OUTPUT"
- name: Publish to PyPI
if: github.event_name == 'push' || github.event.inputs.target == 'pypi'
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: sdk/python/dist
- name: Publish to TestPyPI
if: github.event_name == 'workflow_dispatch' && github.event.inputs.target == 'testpypi'
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
packages-dir: sdk/python/dist
- name: GitHub Release
if: github.event_name == 'push'
uses: softprops/action-gh-release@v1
with:
name: "Python SDK v${{ steps.version.outputs.version }}"
body: |
## PyPI Package
**Package**: `dstack-sdk ${{ steps.version.outputs.version }}`
**Install**: `pip install dstack-sdk==${{ steps.version.outputs.version }}`
**Registry**: https://pypi.org/project/dstack-sdk/${{ steps.version.outputs.version }}/