mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 15:39:46 +00:00
Ignore the platform files
This commit is contained in:
parent
2116c4d438
commit
d92a40e6e9
5
.github/workflows/build-and-release.yml
vendored
5
.github/workflows/build-and-release.yml
vendored
@ -615,6 +615,11 @@ jobs:
|
|||||||
# Find and process files in the artifacts directory:
|
# Find and process files in the artifacts directory:
|
||||||
find "$GITHUB_WORKSPACE/artifacts" -type f | while read -r FILE; do
|
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
|
if [[ "$FILE" == *"x86_64-apple-darwin"* && "$FILE" == *".tar.gz" ]]; then
|
||||||
TARGET_NAME="MindWork AI Studio_${FORMATTED_VERSION}_x64.app.tar.gz"
|
TARGET_NAME="MindWork AI Studio_${FORMATTED_VERSION}_x64.app.tar.gz"
|
||||||
elif [[ "$FILE" == *"x86_64-apple-darwin"* && "$FILE" == *".tar.gz.sig" ]]; then
|
elif [[ "$FILE" == *"x86_64-apple-darwin"* && "$FILE" == *".tar.gz.sig" ]]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user