mirror of
https://github.com/docker/metadata-action.git
synced 2025-12-15 22:09:00 +08:00
Fix issue #546: tags input breaks when using # in Git tag or regex
This commit is contained in:
parent
90b68cf47e
commit
4af9595a81
@ -27,7 +27,7 @@ export function getInputs(): Inputs {
|
||||
return {
|
||||
context: (core.getInput('context') || ContextSource.workflow) as ContextSource,
|
||||
images: Util.getInputList('images', {ignoreComma: true, comment: '#'}),
|
||||
tags: Util.getInputList('tags', {ignoreComma: true, comment: '#'}),
|
||||
tags: Util.getInputList('tags', {ignoreComma: true}),
|
||||
flavor: Util.getInputList('flavor', {ignoreComma: true, comment: '#'}),
|
||||
labels: Util.getInputList('labels', {ignoreComma: true, comment: '#'}),
|
||||
annotations: Util.getInputList('annotations', {ignoreComma: true, comment: '#'}),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user