Skip to content

Commit

Permalink
Python client beta release (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
therapon authored Jul 15, 2023
1 parent e0287a6 commit 59a2096
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_python_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ jobs:
- name: Create GitHub Beta release
if: startsWith(github.ref, 'refs/tags/python@v') && contains(github.ref, 'beta')
run: |
gh release create ${TAG} -p -t "Python Client BETA: ${TAG}"
gh release upload ${TAG} clients/python/dist/kaskada-*.whl --clobber
gh release upload ${TAG} clients/python/dist/kaskada-*.tar.gz --clobber
gh release create ${TAG} --repo ${GITHUB_REPOSITORY} -p -t "Python Client BETA: ${TAG}"
gh release upload ${TAG} --repo ${GITHUB_REPOSITORY} clients/python/dist/kaskada-*.whl --clobber
gh release upload ${TAG} --repo ${GITHUB_REPOSITORY} clients/python/dist/kaskada-*.tar.gz --clobber
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 59a2096

Please sign in to comment.