Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
fix: success output is reversed (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslafy-z authored Oct 28, 2020
1 parent 9c0ea5a commit 797279c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async function run() {
error = err;
}

core.setOutput('success', Boolean(error).toString());
core.setOutput('success', (error === null).toString());

let state = 'success';
let description = successState;
Expand Down

0 comments on commit 797279c

Please sign in to comment.