Skip to content

Commit

Permalink
CI-CD for release procedure - PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
omer-dayan committed Sep 19, 2024
1 parent 040897e commit 71e993c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/on-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,17 @@ jobs:
files: py/*/dist/*.whl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish streamer package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
packages-dir: streaming/py/runai_model_streamer/dist/
print-hash: true

- name: Publish s3 streamer package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
packages-dir: streaming/py/runai_model_streamer_s3/dist/
print-hash: true

0 comments on commit 71e993c

Please sign in to comment.