-
Notifications
You must be signed in to change notification settings - Fork 0
171 lines (162 loc) · 4.66 KB
/
Copy pathrelease-python.yml
File metadata and controls
171 lines (162 loc) · 4.66 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
name: Release Python Packages
on:
workflow_dispatch:
inputs:
target:
description: "Package index to publish to"
required: true
type: choice
options:
- testpypi
- pypi
permissions:
contents: read
jobs:
build:
name: Build and verify distributions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- uses: astral-sh/setup-uv@v5
- name: Build packages
run: make build
- name: Install built wheels in a fresh environment
run: make verify-wheels
- name: Upload dma-sdk artifacts
uses: actions/upload-artifact@v4
with:
name: dma-sdk-distributions
path: packages/dma-sdk-python/dist/*
if-no-files-found: error
- name: Upload dma-langgraph artifacts
uses: actions/upload-artifact@v4
with:
name: dma-langgraph-distributions
path: packages/dma-langgraph/dist/*
if-no-files-found: error
- name: Upload dma-mcp artifacts
uses: actions/upload-artifact@v4
with:
name: dma-mcp-distributions
path: packages/dma-mcp/dist/*
if-no-files-found: error
publish-sdk-testpypi:
name: Publish dma-sdk to TestPyPI
needs: build
if: ${{ inputs.target == 'testpypi' }}
runs-on: ubuntu-latest
environment: testpypi-dma-sdk
permissions:
contents: read
id-token: write
steps:
- name: Download release artifacts
uses: actions/download-artifact@v4
with:
name: dma-sdk-distributions
path: dist
- name: Publish dma-sdk to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
packages-dir: dist
publish-langgraph-testpypi:
name: Publish dma-langgraph to TestPyPI
needs: build
if: ${{ inputs.target == 'testpypi' }}
runs-on: ubuntu-latest
environment: testpypi-dma-langgraph
permissions:
contents: read
id-token: write
steps:
- name: Download release artifacts
uses: actions/download-artifact@v4
with:
name: dma-langgraph-distributions
path: dist
- name: Publish dma-langgraph to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
packages-dir: dist
publish-mcp-testpypi:
name: Publish dma-mcp to TestPyPI
needs: build
if: ${{ inputs.target == 'testpypi' }}
runs-on: ubuntu-latest
environment: testpypi-dma-mcp
permissions:
contents: read
id-token: write
steps:
- name: Download release artifacts
uses: actions/download-artifact@v4
with:
name: dma-mcp-distributions
path: dist
- name: Publish dma-mcp to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
packages-dir: dist
publish-sdk-pypi:
name: Publish dma-sdk to PyPI
needs: build
if: ${{ inputs.target == 'pypi' }}
runs-on: ubuntu-latest
environment: pypi-dma-sdk
permissions:
contents: read
id-token: write
steps:
- name: Download release artifacts
uses: actions/download-artifact@v4
with:
name: dma-sdk-distributions
path: dist
- name: Publish dma-sdk to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist
publish-langgraph-pypi:
name: Publish dma-langgraph to PyPI
needs: build
if: ${{ inputs.target == 'pypi' }}
runs-on: ubuntu-latest
environment: pypi-dma-langgraph
permissions:
contents: read
id-token: write
steps:
- name: Download release artifacts
uses: actions/download-artifact@v4
with:
name: dma-langgraph-distributions
path: dist
- name: Publish dma-langgraph to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist
publish-mcp-pypi:
name: Publish dma-mcp to PyPI
needs: build
if: ${{ inputs.target == 'pypi' }}
runs-on: ubuntu-latest
environment: pypi-dma-mcp
permissions:
contents: read
id-token: write
steps:
- name: Download release artifacts
uses: actions/download-artifact@v4
with:
name: dma-mcp-distributions
path: dist
- name: Publish dma-mcp to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist