fixes for updated inputs

This commit is contained in:
James Brumond 2023-08-18 22:06:16 -07:00
parent 8ff608d867
commit fdcefbf5fa
Signed by: james
GPG Key ID: E8F2FC44BAA3357A
3 changed files with 5 additions and 5 deletions

4
dist/index.js vendored
View File

@ -2888,8 +2888,8 @@ async function main() {
const manifest = await get_manifest(input);
const promises = input.new_tags.map((new_tag) => {
return put_manifest(new_tag, manifest, input);
const promises = input.tags.map((tag) => {
return put_manifest(tag, manifest, input);
});
await Promise.all(promises);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -27,8 +27,8 @@ async function main() {
const manifest = await get_manifest(input);
const promises = input.new_tags.map((new_tag) => {
return put_manifest(new_tag, manifest, input);
const promises = input.tags.map((tag) => {
return put_manifest(tag, manifest, input);
});
await Promise.all(promises);