Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/cd-monorepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
- name: Upload to PyPI
id: publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_UNAME_SYFT_CLIENT }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASS_SYFT_CLIENT }}
run: |
git pull
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-syft-bg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Publish to PyPI
working-directory: packages/syft-bg
env:
TWINE_USERNAME: ${{ secrets.PYPI_UNAME_SYFT_BG }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASS_SYFT_BG }}
run: uvx twine upload --verbose dist/*

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-syft-dataset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Publish to PyPI
working-directory: packages/syft-datasets
env:
TWINE_USERNAME: ${{ secrets.PYPI_UNAME_SYFT_DATASET }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASS_SYFT_DATASET }}
run: uvx twine upload --verbose dist/*

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-syft-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Publish to PyPI
working-directory: packages/syft-job
env:
TWINE_USERNAME: ${{ secrets.PYPI_UNAME_SYFT_JOB }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASS_SYFT_JOB }}
run: uvx twine upload --verbose dist/*

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-syft-permissions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Publish to PyPI
working-directory: packages/syft-permissions
env:
TWINE_USERNAME: ${{ secrets.PYPI_UNAME_SYFT_PERMISSIONS }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASS_SYFT_PERMISSIONS }}
run: uvx twine upload --verbose dist/*

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-syft-perms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Publish to PyPI
working-directory: packages/syft-perms
env:
TWINE_USERNAME: ${{ secrets.PYPI_UNAME_SYFT_PERMS }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASS_SYFT_PERMS }}
run: uvx twine upload --verbose dist/*

Expand Down
Loading