mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 15:59:01 +08:00
level up
Contributes to CURA-8415
This commit is contained in:
parent
5e7a71c914
commit
0cc286a159
7
.github/workflows/macos.yml
vendored
7
.github/workflows/macos.yml
vendored
@ -242,15 +242,14 @@ jobs:
|
||||
f.writelines(f"`{package.key}/{package.version}`\n")
|
||||
|
||||
- name: Archive the artifacts (bash)
|
||||
run: tar -zcf "./${{ steps.filename.outputs.INSTALLER_FILENAME }}.tar.gz" "./UltiMaker-Cura/"
|
||||
working-directory: dist
|
||||
run: tar -zcf "./${{ steps.filename.outputs.INSTALLER_FILENAME }}.tar.gz" "./dist/"
|
||||
|
||||
- name: upload the tarred dist folder
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
path: |
|
||||
dist/${{ steps.filename.outputs.INSTALLER_FILENAME }}.tar.gz
|
||||
${{ steps.filename.outputs.INSTALLER_FILENAME }}.tar.gz
|
||||
retention-days: 5
|
||||
|
||||
cura-installer-create-dmg:
|
||||
@ -264,7 +263,6 @@ jobs:
|
||||
|
||||
- name: untar the dist folder
|
||||
run: tar -zxf "./${{ needs.cura-installer-create.outputs.INSTALLER_FILENAME }}.tar.gz"
|
||||
working-directory: dist
|
||||
|
||||
- name: Remove Macos keychain (Bash)
|
||||
run: security delete-keychain signing_temp.keychain || true
|
||||
@ -312,7 +310,6 @@ jobs:
|
||||
|
||||
- name: untar the dist folder
|
||||
run: tar -zxf "./${{ needs.cura-installer-create.outputs.INSTALLER_FILENAME }}.tar.gz"
|
||||
working-directory: dist
|
||||
|
||||
- name: Remove Macos keychain (Bash)
|
||||
run: security delete-keychain signing_temp.keychain || true
|
||||
|
9
.github/workflows/windows.yml
vendored
9
.github/workflows/windows.yml
vendored
@ -201,15 +201,14 @@ jobs:
|
||||
|
||||
|
||||
- name: Archive the artifacts (Powershell)
|
||||
run: Compress-Archive -Path ".\UltiMaker-Cura" -DestinationPath ".\${{ steps.filename.outputs.INSTALLER_FILENAME }}.zip"
|
||||
working-directory: dist
|
||||
run: Compress-Archive -Path ".\dist" -DestinationPath ".\${{ steps.filename.outputs.INSTALLER_FILENAME }}.zip"
|
||||
|
||||
- name: upload the zipped dist folder
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
path: |
|
||||
dist/${{ steps.filename.outputs.INSTALLER_FILENAME }}.zip
|
||||
${{ steps.filename.outputs.INSTALLER_FILENAME }}.zip
|
||||
retention-days: 5
|
||||
|
||||
cura-installer-create-exe:
|
||||
@ -222,7 +221,7 @@ jobs:
|
||||
name: dist
|
||||
|
||||
- name: Extract the zipped dist
|
||||
run: Expand-Archive -Path ".\dist\${{ needs.cura-installer-create.outputs.INSTALLER_FILENAME }}.zip" -DestinationPath ".\dist"
|
||||
run: Expand-Archive -Path ".\${{ needs.cura-installer-create.outputs.INSTALLER_FILENAME }}.zip" -DestinationPath "."
|
||||
shell: powershell
|
||||
|
||||
- name: Create PFX certificate from BASE64_PFX_CONTENT secret
|
||||
@ -265,7 +264,7 @@ jobs:
|
||||
name: dist
|
||||
|
||||
- name: Extract the zipped dist
|
||||
run: Expand-Archive -Path ".\dist\${{ needs.cura-installer-create.outputs.INSTALLER_FILENAME }}.zip" -DestinationPath ".\dist"
|
||||
run: Expand-Archive -Path ".\${{ needs.cura-installer-create.outputs.INSTALLER_FILENAME }}.zip" -DestinationPath "."
|
||||
shell: powershell
|
||||
|
||||
- name: Create PFX certificate from BASE64_PFX_CONTENT secret
|
||||
|
Loading…
x
Reference in New Issue
Block a user