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