Skip to content

Commit c91c79e

Browse files
committed
fix logging
1 parent 4b8cbfd commit c91c79e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const wait = __webpack_require__(949);
6060
// most @actions toolkit packages have async methods
6161
async function run() {
6262
try {
63-
core.info("::save-state name=test::TestValue")
63+
console.log("::save-state name=test::TestValue");
6464
}
6565
catch (error) {
6666
core.setFailed(error.message);

dist/post.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ async function run() {
5757
core.setFailed(error.message);
5858
}
5959
else {
60-
core.log('The Saved State value is:', process.env.$STATE_name);
60+
console.log('The Saved State value is:', process.env.$STATE_name);
6161
}
6262
}
6363
catch (error) {

0 commit comments

Comments
 (0)