chore(ci): setup internal release process, bump dependencies

This commit is contained in:
Umut
2022-01-26 12:37:25 +03:00
parent d5db141091
commit c996f94627
3 changed files with 110 additions and 107 deletions

View File

@@ -791,6 +791,13 @@ jobs:
-u __token__ -p ${{ secrets.PYPI_BOT_TOKEN }} \
-r pypi "${{ env.ARTIFACTS_PACKAGED_DIR }}"/*.whl
- name: Push package to Internal PyPi
if: ${{ success() && !cancelled() && fromJSON(env.IS_PRERELEASE) }}
run: |
poetry run twine upload \
-u "${{ secrets.INTERNAL_PYPI_BOT_USERNAME }}" -p "${{ secrets.INTERNAL_PYPI_BOT_PASSWORD }}" \
-r "${{ secrets.INTERNAL_PYPI_URL }}" "${{ env.ARTIFACTS_PACKAGED_DIR }}"/*.whl
- name: Push release documentation
if: ${{ success() && !cancelled() }}
env: