Skip to content

Commit

Permalink
v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
selfagency committed Sep 19, 2022
1 parent faf949c commit de21cfd
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Capture output
uses: 'selfagency/[email protected].6'
uses: 'selfagency/[email protected].7'
with:
cmd: yarn
args: run,build,--verbose
Expand Down
2 changes: 1 addition & 1 deletion dist/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3238,7 +3238,7 @@ var errorOut = (data, hideWarning = false) => {
try {
const op = import_core.default.getInput("cmd");
const args = (_a = import_core.default.getInput("args")) == null ? void 0 : _a.replace(/'/g, "").split(",");
const hideWarning = import_core.default.getInput("hide-warning") === "true";
const hideWarning = import_core.default.getInput("hide-warnings") === "true";
const file = import_core.default.getInput("file");
const fail = import_core.default.getInput("fail") === "true";
let output = "";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "capture-output",
"version": "1.0.6",
"version": "1.0.7",
"description": "Capture the output (and duration) of a command as a GitHub Actions `output` or file",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const errorOut = (data: string, hideWarning = false) => {
try {
const op: string = core.getInput('cmd');
const args: string[] = core.getInput('args')?.replace(/'/g, '').split(',');
const hideWarning: boolean = core.getInput('hide-warning') === 'true';
const hideWarning: boolean = core.getInput('hide-warnings') === 'true';
const file: string = core.getInput('file');
const fail: boolean = core.getInput('fail') === 'true';

Expand Down
Empty file removed src/types.d.ts
Empty file.

0 comments on commit de21cfd

Please sign in to comment.