Skip to content

Commit 47cdbc4

Browse files
committed
Fix publishing client bindings
(cherry picked from commit 1ca2dfc)
1 parent fd8126f commit 47cdbc4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/publish.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,25 @@ jobs:
4747
id-token: "write"
4848

4949
steps:
50+
- uses: "actions/checkout@v4"
51+
with:
52+
fetch-depth: 1
53+
path: "pulp_ostree"
54+
5055
- name: "Download Python client"
5156
uses: "actions/download-artifact@v4"
5257
with:
5358
name: "python-client.tar"
59+
path: "pulp_ostree/"
5460

5561
- name: "Untar python client packages"
5662
run: |
5763
tar -xvf ostree-python-client.tar
5864
5965
- name: "Publish client to pypi"
6066
uses: pypa/gh-action-pypi-publish@release/v1
67+
with:
68+
packages-dir: "pulp_ostree/dist/"
6169
publish-ruby-bindings:
6270
runs-on: "ubuntu-latest"
6371
needs:
@@ -68,10 +76,16 @@ jobs:
6876
id-token: "write"
6977

7078
steps:
79+
- uses: "actions/checkout@v4"
80+
with:
81+
fetch-depth: 1
82+
path: "pulp_ostree"
83+
7184
- name: "Download Ruby client"
7285
uses: "actions/download-artifact@v4"
7386
with:
7487
name: "ruby-client.tar"
88+
path: "pulp_ostree/"
7589

7690
- name: "Untar Ruby client packages"
7791
run: |

0 commit comments

Comments
 (0)