From 44185092631a210ec564bfc65c8c36a29a3716c7 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Thu, 23 Nov 2023 18:31:49 +0100 Subject: [PATCH] Fix untaring all client package tar artifacts This step should have been done in a loop. [noissue] --- templates/github/.github/workflows/release.yml.j2 | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/templates/github/.github/workflows/release.yml.j2 b/templates/github/.github/workflows/release.yml.j2 index d107144b..bb9e4024 100644 --- a/templates/github/.github/workflows/release.yml.j2 +++ b/templates/github/.github/workflows/release.yml.j2 @@ -207,7 +207,9 @@ jobs: - name: "Untar python client packages" run: | - tar -xvf python-client.tar + {%- for plugin in plugins %} + tar -xvf {{ plugin.app_label }}-python-client.tar + {%- endfor %} - name: "Publish client to pypi" run: | @@ -223,7 +225,9 @@ jobs: - name: "Untar Ruby client packages" run: | - tar -xvf ruby-client.tar + {%- for plugin in plugins %} + tar -xvf {{ plugin.app_label }}-ruby-client.tar + {%- endfor %} - name: "Publish client to rubygems" run: |