Skip to content

Commit

Permalink
chore(release): 1.4.6
Browse files Browse the repository at this point in the history
## [1.4.6](v1.4.5...v1.4.6) (2021-06-07)

### Dependency Updates

* bump @actions/core from 1.3.0 to 1.4.0 ([f6d23cd](f6d23cd))
  • Loading branch information
gliech committed Jun 7, 2021
1 parent f6d23cd commit b6f1e78
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.4.6](https://github.com/gliech/create-github-secret-action/compare/v1.4.5...v1.4.6) (2021-06-07)


### Dependency Updates

* bump @actions/core from 1.3.0 to 1.4.0 ([f6d23cd](https://github.com/gliech/create-github-secret-action/commit/f6d23cd8741afad8da348397e3ec4372040b29ad))

## [1.4.5](https://github.com/gliech/create-github-secret-action/compare/v1.4.4...v1.4.5) (2021-06-07)


Expand Down
17 changes: 16 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
});
};
Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0;
exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getMultilineInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0;
const command_1 = __nccwpck_require__(7351);
const file_command_1 = __nccwpck_require__(717);
const utils_1 = __nccwpck_require__(5278);
Expand Down Expand Up @@ -220,6 +220,21 @@ function getInput(name, options) {
return val.trim();
}
exports.getInput = getInput;
/**
* Gets the values of an multiline input. Each value is also trimmed.
*
* @param name name of the input to get
* @param options optional. See InputOptions.
* @returns string[]
*
*/
function getMultilineInput(name, options) {
const inputs = getInput(name, options)
.split('\n')
.filter(x => x !== '');
return inputs;
}
exports.getMultilineInput = getMultilineInput;
/**
* Gets the input value of the boolean type in the YAML 1.2 "core schema" specification.
* Support boolean input list: `true | True | TRUE | false | False | FALSE` .
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-github-secret-action",
"version": "1.4.5",
"version": "1.4.6",
"private": "true",
"description": "Create or update a Github Secret",
"main": "dist/index.js",
Expand Down

0 comments on commit b6f1e78

Please sign in to comment.