From 7e619aeb27d4180035f6cd59a4d3bb9f7b3642a1 Mon Sep 17 00:00:00 2001 From: Yoshi Sugawara Date: Tue, 9 Mar 2021 06:28:16 -1000 Subject: [PATCH] Updated artifact zip to not include subdirs for packaging step --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 841031aba3..ef58cd085b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -473,7 +473,10 @@ build-retroarch-osx-arm64-metal: dependencies: [] script: - xcodebuild -project pkg/apple/${XCPROJECT_NAME}.xcodeproj -config Release -scheme RetroArch -archivePath ${XCARCHIVE_PATH} -xcconfig pkg/apple/${XCCONFIG} archive - - zip -qr ${XCPROJECT_NAME}.zip ${XCARCHIVE_PATH}.xcarchive/Products/Users/gitlab/Applications/RetroArch.app + - pushd ${XCARCHIVE_PATH}.xcarchive/Products/Users/gitlab/Applications/ + - zip -qr RetroArch.zip RetroArch.app + - popd + - mv ${XCARCHIVE_PATH}.xcarchive/Products/Users/gitlab/Applications/RetroArch.zip ${XCPROJECT_NAME}.zip # Mac OS Universal, Metal build-retroarch-osx-universal-metal: