Skip to content

Commit

Permalink
Fix untaring all client package tar artifacts
Browse files Browse the repository at this point in the history
This step should have been done in a loop.

[noissue]
  • Loading branch information
mdellweg committed Nov 23, 2023
1 parent ff39829 commit 4418509
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions templates/github/.github/workflows/release.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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: |
Expand Down

0 comments on commit 4418509

Please sign in to comment.