Contributes to CURA-8415
This commit is contained in:
Jelle Spijker 2023-08-19 01:37:01 +02:00
parent 5e7a71c914
commit 0cc286a159
No known key found for this signature in database
GPG Key ID: 034D1C0527888B65
2 changed files with 6 additions and 10 deletions

View File

@ -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

View File

@ -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