mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-22 03:09:27 +08:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ce6bc40bc4 | |||
| 36041268eb | |||
| 36b55e389b | |||
| 6e560d48e7 |
@@ -23,7 +23,12 @@ export async function getDeploymentConfig(): Promise<DeploymentConfig> {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const imageNames = core.getInput('images').split('\n') || []
|
let imageNames = core.getInput('images').split('\n') || []
|
||||||
|
imageNames.forEach((element) => {
|
||||||
|
if (element === null || '/^s+$/') {
|
||||||
|
imageNames.pop()
|
||||||
|
}
|
||||||
|
})
|
||||||
const imageDockerfilePathMap: {[id: string]: string} = {}
|
const imageDockerfilePathMap: {[id: string]: string} = {}
|
||||||
|
|
||||||
const pullImages = !(core.getInput('pull-images').toLowerCase() === 'false')
|
const pullImages = !(core.getInput('pull-images').toLowerCase() === 'false')
|
||||||
|
|||||||
Reference in New Issue
Block a user