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`.
This commit is contained in:
Jamil
2025-01-08 23:24:42 -08:00
committed by GitHub
parent e9f17eaf82
commit 10c166dda4

View File

@@ -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