Skip to content

Commit a756ee7

Browse files
author
Adrian Chang
committed
done
1 parent 6b8a810 commit a756ee7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/lbox-matrix/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26846,7 +26846,9 @@ try {
2684626846
});
2684726847
});
2684826848
});
26849-
core.setOutput("matrix", JSON.stringify(finalMatrix));
26849+
const finalMatrixJSON = JSON.stringify(finalMatrix);
26850+
core.logger.info(finalMatrixJSON);
26851+
core.setOutput("matrix", finalMatrixJSON);
2685026852
} catch(e) {
2685126853
core.logger.error(e);
2685226854
core.setFailed("Could not create matrix");

0 commit comments

Comments
 (0)