Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JayGhiya committed Mar 12, 2024
1 parent 34091bc commit 9245211
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main-pr-merge-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
with:
script: |
const allOutputs = ${{ steps.release_action_plan.outputs }};
const pathsReleased = ${{ fromJson(steps.release_action_plan.outputs.paths_released) }};
const pathsReleased = JSON.parse(${{ steps.release_action_plan.outputs.paths_released }});
console.log("pathsReleased",pathsReleased);
let hashMap = {};
let resultArray = [];
for (const [key, value] of Object.entries(allOutputs)) {
Expand Down

0 comments on commit 9245211

Please sign in to comment.