mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-14 18:27:51 -06:00
Fix build script syntax error
This commit is contained in:
parent
a25b482842
commit
a96ec7663b
1 changed files with 1 additions and 1 deletions
2
.github/workflows/installers.yml
vendored
2
.github/workflows/installers.yml
vendored
|
@ -287,7 +287,7 @@ jobs:
|
||||||
with open("release-notes.md", "w") as f:
|
with open("release-notes.md", "w") as f:
|
||||||
f.write(release_notes.render(
|
f.write(release_notes.render(
|
||||||
timestamp="${{ steps.filename.outputs.NIGHTLY_TIME }}",
|
timestamp="${{ steps.filename.outputs.NIGHTLY_TIME }}",
|
||||||
branch="" if ${{ needs.default-values.outputs.release_tag == 'nightly' }} else current_nightly_beta,
|
branch="" if "${{ needs.default-values.outputs.release_tag == 'nightly' }}" == 'true' else current_nightly_beta,
|
||||||
branch_specific="" if os.getenv("GITHUB_REF") == "refs/heads/main" else f"?branch={current_nightly_beta}",
|
branch_specific="" if os.getenv("GITHUB_REF") == "refs/heads/main" else f"?branch={current_nightly_beta}",
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue