Skip to content

Commit

Permalink
chore: build
Browse files Browse the repository at this point in the history
  • Loading branch information
owojcikiewicz committed Mar 10, 2024
1 parent 95b3627 commit 2e6466d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27190,7 +27190,7 @@ exports["default"] = _default;
Object.defineProperty(exports, "__esModule", ({ value: true }));
const core = __nccwpck_require__(2186);
const fs = __nccwpck_require__(7147);
const parse_env_string_1 = __nccwpck_require__(8476);
const parseEnv = __nccwpck_require__(8476);
const input = (input, required = false) => {
return core.getInput(input, { required });
};
Expand All @@ -27204,7 +27204,7 @@ const getPortainerConfig = () => {
};
const getEnv = () => {
const raw = input('env-file', true);
return (0, parse_env_string_1.default)(raw);
return parseEnv(raw);
};
const getStackConfig = () => {
const path = input('stack-compose-path', true);
Expand All @@ -27213,7 +27213,7 @@ const getStackConfig = () => {
name: input('stack-name', true),
composeFile: file,
pullImage: input('stack-pull-image') === 'true',
prune: input('stack-prune') === 'true',
prune: input('prune') === 'true',
};
};
const config = {
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

0 comments on commit 2e6466d

Please sign in to comment.