From b564b17efade8d0c2949650566a2ea8c5e9d2bd8 Mon Sep 17 00:00:00 2001 From: Merill Date: Wed, 26 Aug 2020 11:35:23 +0200 Subject: [PATCH] #424 use Resources instead of resources maybe also fix #257 --- .github/workflows/ccpp_mac.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ccpp_mac.yml b/.github/workflows/ccpp_mac.yml index af4fa31b6..ad75cf6a6 100644 --- a/.github/workflows/ccpp_mac.yml +++ b/.github/workflows/ccpp_mac.yml @@ -58,11 +58,11 @@ jobs: mkdir SuperSlicer/SuperSlicer.app/Contents/_CodeSignature mkdir SuperSlicer/SuperSlicer.app/Contents/Frameworks mkdir SuperSlicer/SuperSlicer.app/Contents/MacOS - - name: copy resources + - name: copy Resources working-directory: ./build run: | - cp -Rf ../resources SuperSlicer/SuperSlicer.app/Contents/resources - cp SuperSlicer/SuperSlicer.app/Contents/resources/icons/slic3r.icns SuperSlicer/SuperSlicer.app/Contents/resources/Slic3r.icns + cp -Rf ../resources SuperSlicer/SuperSlicer.app/Contents/Resources + cp SuperSlicer/SuperSlicer.app/Contents/Resources/icons/slic3r.icns SuperSlicer/SuperSlicer.app/Contents/resources/Slic3r.icns cp src/Info.date.plist SuperSlicer/SuperSlicer.app/Contents/Info.plist echo -n -e 'APPL????\x0a' > PkgInfo cp PkgInfo SuperSlicer/SuperSlicer.app/Contents/PkgInfo @@ -78,9 +78,9 @@ jobs: run: | hdiutil create -ov -fs HFS+ -volname "SuperSlicer" -srcfolder "SuperSlicer" temp.dmg hdiutil convert temp.dmg -format UDZO -o SuperSlicer.dmg -# - name: signing resources (creating CodeResources inside _CodeSignature) +# - name: signing Resources (creating CodeResources inside _CodeSignature) # working-directory: . -# run: codesign -s resources +# run: codesign -s Resources # maybe i should just try to do that on a separate pc and copy the file here, more secure as a signing process. - name: Upload artifact uses: actions/upload-artifact@v1.0.0