From fbcd5bc0c8a38050e5fb3e25c16ea7091f5ed303 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 19 Feb 2023 11:48:30 -0800 Subject: [PATCH] ci: fix path to release app --- .github/workflows/release-tip.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-tip.yml b/.github/workflows/release-tip.yml index 5edefaa0a..eaeb3f1f5 100644 --- a/.github/workflows/release-tip.yml +++ b/.github/workflows/release-tip.yml @@ -77,7 +77,7 @@ jobs: security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k "$MACOS_CI_KEYCHAIN_PWD" build.keychain # We finally codesign our app bundle, specifying the Hardened runtime option - /usr/bin/codesign --force -s "$MACOS_CERTIFICATE_NAME" --options runtime build/Release/Ghostty.app -v + /usr/bin/codesign --force -s "$MACOS_CERTIFICATE_NAME" --options runtime macos/build/Release/Ghostty.app -v - name: "Notarize app bundle" env: @@ -94,7 +94,7 @@ jobs: # Therefore, we create a zip file containing our app bundle, so that we can send it to the # notarization service echo "Creating temp notarization archive" - ditto -c -k --keepParent "build/Release/Ghostty.app" "notarization.zip" + ditto -c -k --keepParent "macos/build/Release/Ghostty.app" "notarization.zip" # Here we send the notarization request to the Apple's Notarization service, waiting for the result. # This typically takes a few seconds inside a CI environment, but it might take more depending on the App @@ -106,11 +106,11 @@ jobs: # Finally, we need to "attach the staple" to our executable, which will allow our app to be # validated by macOS even when an internet connection is not available. echo "Attach staple" - xcrun stapler staple "build/Release/Ghostty.app" + xcrun stapler staple "macos/build/Release/Ghostty.app" # Zip up the app - name: Zip App - run: cd build/Release && zip -9 -r ../../../ghostty-macos-universal.zip Ghostty.app + run: cd macos/build/Release && zip -9 -r ../../../ghostty-macos-universal.zip Ghostty.app # Update Release - name: Release