Skip to content

Commit

Permalink
fix(ci): remove dependence between diff py repo pushes
Browse files Browse the repository at this point in the history
we don't want one push failure to impact the others
  • Loading branch information
youben11 authored May 13, 2024
1 parent 20590cf commit fc9a225
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/concrete_python_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,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 +211,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 +221,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

0 comments on commit fc9a225

Please sign in to comment.