mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 23:25:53 +08:00
zip dist
Contributes to CURA-8415
This commit is contained in:
parent
c1e27a9016
commit
5e7a71c914
16
.github/workflows/macos.yml
vendored
16
.github/workflows/macos.yml
vendored
@ -241,12 +241,16 @@ jobs:
|
|||||||
for package in pkg_resources.working_set:
|
for package in pkg_resources.working_set:
|
||||||
f.writelines(f"`{package.key}/{package.version}`\n")
|
f.writelines(f"`{package.key}/{package.version}`\n")
|
||||||
|
|
||||||
- name: upload the dist folder
|
- name: Archive the artifacts (bash)
|
||||||
|
run: tar -zcf "./${{ steps.filename.outputs.INSTALLER_FILENAME }}.tar.gz" "./UltiMaker-Cura/"
|
||||||
|
working-directory: dist
|
||||||
|
|
||||||
|
- name: upload the tarred dist folder
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
path: |
|
path: |
|
||||||
dist/
|
dist/${{ steps.filename.outputs.INSTALLER_FILENAME }}.tar.gz
|
||||||
retention-days: 5
|
retention-days: 5
|
||||||
|
|
||||||
cura-installer-create-dmg:
|
cura-installer-create-dmg:
|
||||||
@ -258,6 +262,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
|
|
||||||
|
- 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)
|
- name: Remove Macos keychain (Bash)
|
||||||
run: security delete-keychain signing_temp.keychain || true
|
run: security delete-keychain signing_temp.keychain || true
|
||||||
|
|
||||||
@ -302,6 +310,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
|
|
||||||
|
- 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)
|
- name: Remove Macos keychain (Bash)
|
||||||
run: security delete-keychain signing_temp.keychain || true
|
run: security delete-keychain signing_temp.keychain || true
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user