2
0
Fork 0
mirror of https://code.forgejo.org/docker/metadata-action.git synced 2025-08-26 16:00:54 +00:00

Fix 'enable' tag attribute (#53)

This commit is contained in:
Jakub Bacic 2021-03-30 13:11:51 +02:00 committed by GitHub
parent 72654174f7
commit b909bd34ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 79 additions and 1 deletions

View file

@ -44,6 +44,10 @@ export class Meta {
};
for (const tag of this.tags) {
if (tag.attrs['enable'] == 'false') {
continue;
}
switch (tag.type) {
case tcl.Type.Schedule: {
version = this.procSchedule(version, tag);