Removed unused platform check

This commit is contained in:
Thorsten Sommer 2024-06-22 11:38:24 +02:00
parent 5435d540dd
commit 8c6d8b125f
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -598,11 +598,6 @@ jobs:
# Find and process files in the artifacts directory:
find "$GITHUB_WORKSPACE/artifacts" -type f | while read -r FILE; do
# Ignore .updates/platform files:
if [[ "$FILE" == *".updates/platform" ]]; then
continue
fi
if [[ "$FILE" == *"x86_64-apple-darwin"* && "$FILE" == *".tar.gz" ]]; then
TARGET_NAME="MindWork AI Studio_${VERSION}_x64.app.tar.gz"
elif [[ "$FILE" == *"x86_64-apple-darwin"* && "$FILE" == *".tar.gz.sig" ]]; then