We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e91bcf commit 9f5bd68Copy full SHA for 9f5bd68
1 file changed
.github/workflows/release.yml
@@ -52,9 +52,9 @@ jobs:
52
http_status=$( curl -s -o /dev/null -w "%{http_code}" https://${pypi_hostname}/pypi/duckdb/${pkg_version}/json )
53
if [ "$http_status" == "200" ]; then
54
echo "::warning::DuckDB ${pkg_version} is already present on ${pypi_hostname}, will not release"
55
- echo "can_upload=true" >> $GITHUB_GITHUB_OUTPUT
+ echo "can_upload=true" >> $GITHUB_OUTPUT
56
else
57
- echo "can_upload=false" >> $GITHUB_GITHUB_OUTPUT
+ echo "can_upload=false" >> $GITHUB_OUTPUT
58
fi
59
60
0 commit comments