From cf54210f42f66c324392338b16407364615c1857 Mon Sep 17 00:00:00 2001 From: Steveice10 <1269164+Steveice10@users.noreply.github.com> Date: Sun, 20 Aug 2023 16:41:13 -0700 Subject: [PATCH] ci: Remove compatibility artifact naming for releases. (#6647) --- .ci/pack.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.ci/pack.sh b/.ci/pack.sh index 3609f3844..2aedbd4df 100755 --- a/.ci/pack.sh +++ b/.ci/pack.sh @@ -7,13 +7,6 @@ REV_NAME="citra-${OS}-${TARGET}-${GITDATE}-${GITREV}" # Find out what release we are building if [[ "$GITHUB_REF_NAME" =~ ^canary- ]] || [[ "$GITHUB_REF_NAME" =~ ^nightly- ]]; then RELEASE_NAME=$(echo $GITHUB_REF_NAME | cut -d- -f1) - # For compatibility with existing installs, use mingw/osx in the archive and target names. - if [ "$TARGET" = "msys2" ]; then - REV_NAME="citra-${OS}-mingw-${GITDATE}-${GITREV}" - RELEASE_NAME="${RELEASE_NAME}-mingw" - elif [ "$OS" = "macos" ]; then - REV_NAME="citra-osx-${TARGET}-${GITDATE}-${GITREV}" - fi else RELEASE_NAME=head fi