We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f07c5c commit db3841cCopy full SHA for db3841c
.github/workflows/build-docker-artifacts.yml
@@ -113,9 +113,9 @@ jobs:
113
ecr_respositories: flavor.components.map(component => component.ecr_repository),
114
components: flavor.components.map(component => {
115
// Format env variables as build-args string
116
- const envBuildArgs = component.env ?
+ const envBuildArgs = component.env ?
117
Object.entries(component.env).map(([key, value]) => `${key}=${value}`).join('\n') : '';
118
-
+
119
return {
120
...component,
121
// Add metadata to the component object (will be used as matrix input),
.gitignore
@@ -1 +1,2 @@
1
*.log
2
+.venv/
0 commit comments