mirror of
https://github.com/docker/build-push-action
synced 2024-11-10 05:21:40 +00:00
Update dist/index.js
Signed-off-by: Mathieu Bergeron <mathieu.bergeron@nuecho.com>
This commit is contained in:
parent
21692b9878
commit
8616d520af
1 changed files with 3 additions and 3 deletions
6
dist/index.js
generated
vendored
6
dist/index.js
generated
vendored
|
@ -4248,9 +4248,9 @@ function getImageID() {
|
|||
exports.getImageID = getImageID;
|
||||
function getSecret(kvp) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
const sepIndex = kvp.indexOf('=');
|
||||
const key = kvp.substr(0, sepIndex);
|
||||
const value = kvp.substr(sepIndex + 1);
|
||||
const delimiterIndex = kvp.indexOf('=');
|
||||
const key = kvp.substring(0, delimiterIndex);
|
||||
const value = kvp.substring(delimiterIndex + 1);
|
||||
const secretFile = context.tmpNameSync({
|
||||
tmpdir: context.tmpDir()
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue