add fix inshallah

This commit is contained in:
2025-10-28 22:06:11 +01:00
parent 796a2455b2
commit e285b8a6a7

View File

@@ -15,7 +15,14 @@ runs:
set -euo pipefail
echo "[Cleanup Extra Files Started]"
readarray -t skins < <(echo '${{ inputs.all_skins }}' | jq -r '.[]')
# Read from shared file to avoid GitHub Actions template expansion issues
all_skins_file="/tmp/all_skins_shared.json"
if [ ! -f "$all_skins_file" ]; then
echo "Error: $all_skins_file not found"
exit 1
fi
readarray -t skins < <(jq -r '.[]' "$all_skins_file")
[ -f how-to-use.md ] && rm -f -- how-to-use.md
[ -f src/replay.osr ] && rm -f -- src/replay.osr