Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Azathothas committed Jan 31, 2025
1 parent 92f62bf commit fa016f6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/schedule_builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,15 @@ jobs:
#ESCAPED_BUILD_LIST="$(echo "${BUILD_LIST}" | jq -c '@json')"
#echo "build_list=${ESCAPED_BUILD_LIST}" >> "${GITHUB_OUTPUT}"
#echo "${ESCAPED_BUILD_LIST}" | jq -R 'fromjson | fromjson'
echo "${BUILD_LIST}" | jq .
#echo "${BUILD_LIST}" | jq .
fi
continue-on-error: false

- name: Sanity Check Input JSON
run: |
echo '${{ steps.set-inputs.outputs.build_list }}' | jq .
continue-on-error: true

trigger-build:
runs-on: ubuntu-latest
permissions:
Expand All @@ -86,7 +91,7 @@ jobs:
max-parallel: 20
matrix:
#package: ${{ fromJSON(fromJSON(needs.pre-trigger-build.outputs.build_list || '{}')) }}
package: ${{ fromJSON(needs.pre-trigger-build.outputs.build_list) }}
package: ${{ fromJSON(needs.pre-trigger-build.outputs.build_list || '[]') }}
steps:
- name: Print Matrix Output
run: |
Expand Down

0 comments on commit fa016f6

Please sign in to comment.