mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-04 00:01:19 -07:00
negate bool input in appropriate place
This commit is contained in:
parent
9f3381a54b
commit
ee87e0a925
1 changed files with 4 additions and 4 deletions
8
.github/workflows/cura-installer.yml
vendored
8
.github/workflows/cura-installer.yml
vendored
|
|
@ -230,17 +230,17 @@ jobs:
|
||||||
run: pyinstaller ./cura_inst/UltiMaker-Cura.spec
|
run: pyinstaller ./cura_inst/UltiMaker-Cura.spec
|
||||||
|
|
||||||
- name: Archive the artifacts (bash)
|
- name: Archive the artifacts (bash)
|
||||||
if: ${{ inputs.installer && runner.os != 'Windows' }}
|
if: ${{ !inputs.installer && runner.os != 'Windows' }}
|
||||||
run: tar -zcf "./UltiMaker-Cura-$CURA_VERSION_FULL-${{ inputs.os_name }}.tar.gz" "./UltiMaker-Cura/"
|
run: tar -zcf "./UltiMaker-Cura-$CURA_VERSION_FULL-${{ inputs.os_name }}.tar.gz" "./UltiMaker-Cura/"
|
||||||
working-directory: dist
|
working-directory: dist
|
||||||
|
|
||||||
- name: Archive the artifacts (Powershell)
|
- name: Archive the artifacts (Powershell)
|
||||||
if: ${{ inputs.installer && runner.os == 'Windows' }}
|
if: ${{ !inputs.installer && runner.os == 'Windows' }}
|
||||||
run: Compress-Archive -Path ".\UltiMaker-Cura" -DestinationPath ".\UltiMaker-Cura-$Env:CURA_VERSION_FULL-${{ inputs.os_name }}.zip"
|
run: Compress-Archive -Path ".\UltiMaker-Cura" -DestinationPath ".\UltiMaker-Cura-$Env:CURA_VERSION_FULL-${{ inputs.os_name }}.zip"
|
||||||
working-directory: dist
|
working-directory: dist
|
||||||
|
|
||||||
- name: Create the Windows exe installer (Powershell)
|
- name: Create the Windows exe installer (Powershell)
|
||||||
if: ${{ inputs.installer && runner.os == 'Windows' && inputs.msi_installer }}
|
if: ${{ inputs.installer && runner.os == 'Windows' && !inputs.msi_installer }}
|
||||||
run: |
|
run: |
|
||||||
python ..\cura_inst\packaging\NSIS\create_windows_installer.py ../cura_inst . "UltiMaker-Cura-$Env:CURA_VERSION_FULL-${{ inputs.os_name }}.exe"
|
python ..\cura_inst\packaging\NSIS\create_windows_installer.py ../cura_inst . "UltiMaker-Cura-$Env:CURA_VERSION_FULL-${{ inputs.os_name }}.exe"
|
||||||
working-directory: dist
|
working-directory: dist
|
||||||
|
|
@ -252,7 +252,7 @@ jobs:
|
||||||
working-directory: dist
|
working-directory: dist
|
||||||
|
|
||||||
- name: Sign the Windows exe installer (Powershell)
|
- name: Sign the Windows exe installer (Powershell)
|
||||||
if: ${{ inputs.installer && runner.os == 'Windows' && inputs.msi_installer }}
|
if: ${{ inputs.installer && runner.os == 'Windows' && !inputs.msi_installer }}
|
||||||
env:
|
env:
|
||||||
PFX_PATH: ${{ steps.create-pfx.outputs.PFX_PATH }}
|
PFX_PATH: ${{ steps.create-pfx.outputs.PFX_PATH }}
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue