add fix inshallah
This commit is contained in:
@@ -44,11 +44,11 @@ runs:
|
||||
id: detect
|
||||
shell: bash
|
||||
run: |
|
||||
echo "→ Running in shell: $SHELL (bash version: $BASH_VERSION)"
|
||||
echo "[Detect Changed Skin Directories Started]"
|
||||
|
||||
# Parse JSON back into Bash array
|
||||
mapfile -t all_skins < <(echo '${{ steps.discover_all.outputs.all_skins }}' | jq -r '.[]')
|
||||
# Parse JSON back into Bash array - using a temp file to avoid process substitution issues
|
||||
all_skins_json='${{ steps.discover_all.outputs.all_skins }}'
|
||||
mapfile -t all_skins < <(printf '%s' "$all_skins_json" | jq -r '.[]')
|
||||
|
||||
force_rebuild="${{ inputs.force_rebuild }}"
|
||||
target_skins="${{ inputs.target_skins }}"
|
||||
|
||||
Reference in New Issue
Block a user