Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python Realse CI Fixes #821

Merged
merged 2 commits into from
May 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/concrete_python_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ jobs:
${{ env.DOCKER_GPU_OPTION }}
shell: bash
run: |
set -e
aquint-zama marked this conversation as resolved.
Show resolved Hide resolved

rustup toolchain install nightly-2024-01-31
rm -rf /build/*

Expand Down Expand Up @@ -201,6 +203,7 @@ jobs:
merge-multiple: true

- name: Push wheels to internal PyPI (nightly)
continue-on-error: true
if: ${{ env.RELEASE_TYPE == 'nightly' }}
run: |
pip install twine==4.0.2
Expand All @@ -210,6 +213,7 @@ jobs:
--repository-url "${{ secrets.INTERNAL_PYPI_URL }}"

- name: Push wheels to public PyPI (public)
continue-on-error: true
if: ${{ env.RELEASE_TYPE == 'public' }}
run: |
pip install twine==4.0.2
Expand All @@ -219,6 +223,7 @@ jobs:
-r pypi

- name: Upload wheels to S3
continue-on-error: true
if: ${{ env.RELEASE_TYPE == 'public' }}
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_IAM_ID }}
Expand Down
Loading