fix reference error

This commit is contained in:
James Brumond 2023-08-18 21:48:02 -07:00
parent dc3b78f911
commit 2b8c0ec844
Signed by: james
GPG Key ID: E8F2FC44BAA3357A
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -2931,7 +2931,7 @@ async function put_manifest(new_tag, manifest, input) {
'content-type': manifest_media_type,
};
if (token) {
if (input.token) {
req_headers.authorization = `Bearer ${input.token}`;
}

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -70,7 +70,7 @@ async function put_manifest(new_tag, manifest, input) {
'content-type': manifest_media_type,
};
if (token) {
if (input.token) {
req_headers.authorization = `Bearer ${input.token}`;
}