File tree Expand file tree Collapse file tree 3 files changed +27
-17
lines changed
Expand file tree Collapse file tree 3 files changed +27
-17
lines changed Original file line number Diff line number Diff line change 1+ name : Build Python client
2+
3+ on :
4+ push :
5+ branches :
6+ - release/**
7+
8+ permissions :
9+ contents : read
10+
11+ jobs :
12+ build :
13+ name : Build and upload artifacts
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - uses : actions/checkout@v4
18+
19+ - uses : astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
20+
21+ - name : Build artifacts
22+ run : uv build --package objectstore-client
23+
24+ - uses : actions/upload-artifact@v5
25+ with :
26+ path : dist/*
27+ if-no-files-found : ' error'
Original file line number Diff line number Diff line change @@ -155,20 +155,3 @@ jobs:
155155
156156 - *download
157157 - *assemble
158-
159- build-client-python :
160- name : Python client
161- runs-on : ubuntu-latest
162-
163- steps :
164- - uses : actions/checkout@v4
165-
166- - uses : astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
167-
168- - name : Build artifacts
169- run : uv build --package objectstore-client
170-
171- - uses : actions/upload-artifact@v5
172- with :
173- path : dist/*
174- if-no-files-found : ' error'
File renamed without changes.
You can’t perform that action at this time.
0 commit comments