Skip to content

Commit 1a7eeea

Browse files
committed
put client build in separate workflow
1 parent bc22e83 commit 1a7eeea

File tree

3 files changed

+27
-17
lines changed

3 files changed

+27
-17
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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'

.github/workflows/build.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)