We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c04c71f commit aaf5492Copy full SHA for aaf5492
1 file changed
vinca/generate_gha.py
@@ -299,13 +299,13 @@ def build_unix_pipeline(
299
if prefix_channel:
300
target_glob = f"{target}*" if target else "*"
301
upload_script = lu(
302
- f"if compgen -G \"$HOME/conda-bld/{target_glob}/*.conda\" > /dev/null; then\n"
+ f'if compgen -G "$HOME/conda-bld/{target_glob}/*.conda" > /dev/null; then\n'
303
f" ~/.pixi/bin/rattler-build upload prefix"
304
f" --channel {prefix_channel}"
305
f" --generate-attestation"
306
f" $HOME/conda-bld/{target_glob}/*.conda\n"
307
f"else\n"
308
- f" echo \"No packages to upload to prefix.dev\"\n"
+ f' echo "No packages to upload to prefix.dev"\n'
309
f"fi\n"
310
)
311
steps.append(
0 commit comments