minor debugging for publishing (#2739)

* minor debugging for publishing

* fix logic
This commit is contained in:
Mike Drob
2025-11-12 06:33:39 -08:00
committed by GitHub
parent 23f81ed1c1
commit 3f866be665
+9 -1
View File
@@ -15,6 +15,7 @@ jobs:
outputs:
pypi_env: ${{ github.event_name == 'push' && 'pypi' || 'test-pypi' }}
pypi_url: ${{ github.event_name == 'push' && 'https://upload.pypi.org/legacy/' || 'https://test.pypi.org/legacy/' }}
skip_duplicates: ${{ github.event_name == 'push' && 'false' || 'true' }}
steps:
- name: Set publishing variables
run: echo "Publishing setup complete"
@@ -166,6 +167,8 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: ${{ needs.setup.outputs.pypi_url }}
skip-existing: ${{ needs.setup.outputs.skip_duplicates }}
print-hash: true
pypi-publish-cuda:
name: Upload CUDA release to PyPI
@@ -187,6 +190,8 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: ${{ needs.setup.outputs.pypi_url }}
skip-existing: ${{ needs.setup.outputs.skip_duplicates }}
print-hash: true
pypi-publish-cpu:
name: Upload CPU release to PyPI
@@ -208,6 +213,8 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: ${{ needs.setup.outputs.pypi_url }}
skip-existing: ${{ needs.setup.outputs.skip_duplicates }}
print-hash: true
pypi-publish-metal:
name: Upload Metal release to PyPI
@@ -229,4 +236,5 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: ${{ needs.setup.outputs.pypi_url }}
skip-existing: ${{ needs.setup.outputs.skip_duplicates }}
print-hash: true