From 10c166dda498765e798a38c944e03728830467ee Mon Sep 17 00:00:00 2001 From: Jamil Date: Wed, 8 Jan 2025 23:24:42 -0800 Subject: [PATCH] fix(ci): Fix typo when moving final DMG into place (#7710) The customized DMG needs to be moved to `ARTIFACT_PATH`. Currently, this is set to the intermediate `$package_path`. --- scripts/build/macos-standalone.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/macos-standalone.sh b/scripts/build/macos-standalone.sh index 5e2ea0f96..14b865c63 100755 --- a/scripts/build/macos-standalone.sh +++ b/scripts/build/macos-standalone.sh @@ -123,5 +123,5 @@ echo "Disk image created at $dmg_path" # Move to final location the uploader expects if [[ -n "${ARTIFACT_PATH:-}" ]]; then - mv "$package_path" "$ARTIFACT_PATH" + mv "$dmg_path" "$ARTIFACT_PATH" fi