You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ -z "${{ secrets.TEST_PYPI_PASSWORD_SVV }}" ]; then
99
+
echo "::error title=Missing secret::The repository secret 'TEST_PYPI_PASSWORD_SVV' is not configured. Set it to a TestPyPI API token with access to the 'svv' project.";
if [ -z "${{ secrets.TEST_PYPI_PASSWORD_ACCEL }}" ]; then
112
+
echo "::error title=Missing secret::The repository secret 'TEST_PYPI_PASSWORD_ACCEL' is not configured. Set it to a TestPyPI API token with access to the 'svv-accelerated' project.";
113
+
exit 1;
114
+
fi
115
+
- name: Upload accelerated wheels (svv-accelerated) to TestPyPI
echo "No base svv artifacts found; skipping upload."
106
+
exit 0
107
+
fi
108
+
if [ -z "${{ secrets.PYPI_PASSWORD_SVV }}" ]; then
109
+
echo "::error title=Missing secret::The repository secret 'PYPI_PASSWORD_SVV' is not configured. Set it to a PyPI API token with access to the 'svv' project.";
echo "No svv-accelerated artifacts found; skipping upload."
123
+
exit 0
124
+
fi
125
+
if [ -z "${{ secrets.PYPI_PASSWORD_ACCEL }}" ]; then
126
+
echo "::error title=Missing secret::The repository secret 'PYPI_PASSWORD_ACCEL' is not configured. Set it to a PyPI API token with access to the 'svv-accelerated' project.";
0 commit comments