add fix inshallah
This commit is contained in:
@@ -15,7 +15,14 @@ runs:
|
|||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
echo "[Cleanup Extra Files Started]"
|
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 how-to-use.md ] && rm -f -- how-to-use.md
|
||||||
[ -f src/replay.osr ] && rm -f -- src/replay.osr
|
[ -f src/replay.osr ] && rm -f -- src/replay.osr
|
||||||
|
|||||||
Reference in New Issue
Block a user