Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-przybyl-wttech committed May 6, 2024
1 parent dfe2e6b commit 7bd9f39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ jobs:
- name: Compress SDK folder
run: |
for language in nodejs python dotnet go; do
tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
tar -zcf sdk/${{ language }}.tar.gz -C sdk/${{ language }} .
done
- name: Upload artifacts
run: |
for language in nodejs python dotnet go; do
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.language }}-sdk.tar.gz
path: ${{ github.workspace}}/sdk/${{ matrix.language }}.tar.gz
name: ${{ language }}-sdk.tar.gz
path: ${{ github.workspace}}/sdk/${{ language }}.tar.gz
done
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down

0 comments on commit 7bd9f39

Please sign in to comment.