mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 21:13:58 -06:00
Fix incorrect embedded quotes
Contributes to CURA-10561
This commit is contained in:
parent
64f5f54919
commit
bb6f8fa554
3 changed files with 6 additions and 6 deletions
4
.github/workflows/linux.yml
vendored
4
.github/workflows/linux.yml
vendored
|
@ -216,7 +216,7 @@ jobs:
|
|||
f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n")
|
||||
f.writelines("## Conan packages:\n")
|
||||
for dep_name, dep_info in ConanDependencies.items():
|
||||
f.writelines(f"`{dep_name} {dep_info["version"]} {dep_info["revision"]}`\n")
|
||||
f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n")
|
||||
|
||||
- name: Summarize the used Python modules
|
||||
shell: python
|
||||
|
@ -236,7 +236,7 @@ jobs:
|
|||
f.write(content)
|
||||
f.writelines("## Python modules:\n")
|
||||
for dep_name, dep_info in ConanDependencies.items():
|
||||
f.writelines(f"`{dep_name} {dep_info["version"]}`\n")
|
||||
f.writelines(f"`{dep_name} {dep_info['version']}`\n")
|
||||
|
||||
- name: Create the Linux AppImage (Bash)
|
||||
run: |
|
||||
|
|
4
.github/workflows/macos.yml
vendored
4
.github/workflows/macos.yml
vendored
|
@ -228,7 +228,7 @@ jobs:
|
|||
f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n")
|
||||
f.writelines("## Conan packages:\n")
|
||||
for dep_name, dep_info in ConanDependencies.items():
|
||||
f.writelines(f"`{dep_name} {dep_info["version"]} {dep_info["revision"]}`\n")
|
||||
f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n")
|
||||
|
||||
- name: Summarize the used Python modules
|
||||
shell: python
|
||||
|
@ -248,7 +248,7 @@ jobs:
|
|||
f.write(content)
|
||||
f.writelines("## Python modules:\n")
|
||||
for dep_name, dep_info in ConanDependencies.items():
|
||||
f.writelines(f"`{dep_name} {dep_info["version"]}`\n")
|
||||
f.writelines(f"`{dep_name} {dep_info['version']}`\n")
|
||||
|
||||
- name: Create the Macos dmg (Bash)
|
||||
run: python ../cura_inst/packaging/MacOS/build_macos.py --source_path ../cura_inst --dist_path . --cura_conan_version $CURA_CONAN_VERSION --filename "${{ steps.filename.outputs.INSTALLER_FILENAME }}" --build_dmg --build_pkg --app_name "$CURA_APP_NAME"
|
||||
|
|
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
|
@ -187,7 +187,7 @@ jobs:
|
|||
f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n")
|
||||
f.writelines("## Conan packages:\n")
|
||||
for dep_name, dep_info in ConanDependencies.items():
|
||||
f.writelines(f"`{dep_name} {dep_info["version"]} {dep_info["revision"]}`\n")
|
||||
f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n")
|
||||
|
||||
- name: Summarize the used Python modules
|
||||
shell: python
|
||||
|
@ -207,7 +207,7 @@ jobs:
|
|||
f.write(content)
|
||||
f.writelines("## Python modules:\n")
|
||||
for dep_name, dep_info in ConanDependencies.items():
|
||||
f.writelines(f"`{dep_name} {dep_info["version"]}`\n")
|
||||
f.writelines(f"`{dep_name} {dep_info['version']}`\n")
|
||||
|
||||
- name: Create PFX certificate from BASE64_PFX_CONTENT secret
|
||||
id: create-pfx
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue