Skip to content

Commit

Permalink
fix: tag reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Forattini committed Sep 5, 2023
1 parent 1a2e7a5 commit 2cf4a97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/config-scrapper/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -112295,7 +112295,7 @@ var deploy = async (analysis) => {
analysis.deployment.fullname_tag = fullname_tag;
analysis.deployment.fullname_tags = fullname_tags;
analysis.deployment.tags_string = fullname_tags.join(',');
analysis.deployment.tags_command = fullname_tags.map(t => `--tag ${tag}`).join(' ');
analysis.deployment.tags_command = fullname_tags.map(t => `--tag ${t}`).join(' ');
logger$3.info('deployment', `tag = ${tag}`);

let args = "";
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/config-scrapper/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/actions/config-scrapper/src/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ module.exports = async (analysis) => {
analysis.deployment.fullname_tag = fullname_tag
analysis.deployment.fullname_tags = fullname_tags
analysis.deployment.tags_string = fullname_tags.join(',')
analysis.deployment.tags_command = fullname_tags.map(t => `--tag ${tag}`).join(' ')
analysis.deployment.tags_command = fullname_tags.map(t => `--tag ${t}`).join(' ')
logger.info('deployment', `tag = ${tag}`)

let args = ""
Expand Down

0 comments on commit 2cf4a97

Please sign in to comment.