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 93a1040 commit f3479da
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,19 +64,17 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: sdk/${{ steps.get_tag.outputs.tag }}
tag_prefix: ""
- name: Compress SDK folder
run: |
for language in nodejs python dotnet go; do
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: $language-sdk.tar.gz
path: ${{ github.workspace}}/sdk/$language.tar.gz
done
uses: actions/upload-artifact@v4
with:
name: sdk-artifacts
path: ${{ github.workspace}}/sdk/*.tar.gz
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit f3479da

Please sign in to comment.