We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 615bf64 commit 39b50d7Copy full SHA for 39b50d7
.github/workflows/main.yml
@@ -55,8 +55,9 @@ jobs:
55
uses: actions/github-script@v6
56
with:
57
script: |
58
- const platform = ${{ matrix.group.platform }};
59
- const jobs = ${{ matrix.group.jobs }};
+ const matrix = JSON.parse("${{ toJson(matrix) }}"}
+ const platform = matrix.group.platform;
60
+ const jobs = matrix.group.jobs;
61
console.log(`Calling container-upload workflow for platform: ${platform} with ${jobs.length} jobs`);
62
63
await github.rest.actions.createWorkflowDispatch({
0 commit comments