From 69e5d0724035804479ea9cf0d75079798dc7858c Mon Sep 17 00:00:00 2001 From: atavism Date: Tue, 12 Dec 2023 22:29:40 -0800 Subject: [PATCH] move download artifact step --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 44f619211..909e26075 100644 --- a/Makefile +++ b/Makefile @@ -517,7 +517,7 @@ $(INSTALLER_NAME).dmg: require-version require-appdmg require-retry rm -rf $(DARWIN_APP_NAME) && \ cp -r $$INSTALLER_RESOURCES/$(DARWIN_APP_NAME)_template $(DARWIN_APP_NAME) && \ mkdir $(DARWIN_APP_NAME)/Contents/MacOS && \ - cp -r build/macos/Build/Products/Debug/Lantern.app/Contents/* $(DARWIN_APP_NAME)/Contents/ && \ + cp -r build/macos/Build/Products/Release/Lantern.app/Contents/* $(DARWIN_APP_NAME)/Contents/ && \ cp -r $(DARWIN_BINARY_NAME) $(DARWIN_APP_NAME)/Contents/Resources && \ mkdir $(DARWIN_APP_NAME)/Contents/Resources/en.lproj && \ cp $(INSTALLER_RESOURCES)/$(PACKAGED_YAML) $(DARWIN_APP_NAME)/Contents/Resources/en.lproj/$(PACKAGED_YAML) && \