fixes for updated inputs
This commit is contained in:
parent
8ff608d867
commit
fdcefbf5fa
4
dist/index.js
vendored
4
dist/index.js
vendored
@ -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
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
4
index.js
4
index.js
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user