We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c469bcb commit 30604dbCopy full SHA for 30604db
.github/workflows/main.yml
@@ -55,9 +55,9 @@ jobs:
55
uses: actions/github-script@v6
56
with:
57
script: |
58
- const matrix = {};
59
- const platform = matrix.group.platform;
60
- const jobs = matrix.group.jobs;
+ const matrix = JSON.parse('${{ toJson(matrix.group) }}');
+ const platform = matrix.platform;
+ const jobs = matrix.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