clean install folder after deploy on macos

This commit is contained in:
alemuntoni 2022-11-23 15:30:42 +01:00
parent d02449a531
commit d677b232a9
2 changed files with 5 additions and 1 deletions

View File

@ -62,7 +62,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: meshlab_macos_portable${{steps.envs.outputs.artifact_suffix}}
path: install/MeshLab*.app
path: install/
- name: Upload DMG
uses: actions/upload-artifact@v3
with:

View File

@ -43,3 +43,7 @@ done
${QT_DIR}macdeployqt $INSTALL_PATH/$APPNAME \
$ARGUMENTS
# remove everything from install path, except the appbundle
cd $INSTALL_PATH
ls | grep -xv "${APPNAME}" | xargs rm