Skip to content

Commit 9c78c25

Browse files
authored
ci: force sandbox container labels to be string
1 parent 0bb036e commit 9c78c25

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dev/deploy-to-container/cli.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,9 @@ async function main () {
236236
`VIRTUAL_PORT=8000`
237237
],
238238
Labels: {
239-
appversion: argv.appversion ?? '0.0.0',
240-
commit: argv.commit ?? 'unknown',
241-
ghrunid: argv.ghrunid ?? '0'
239+
appversion: `{argv.appversion}` ?? '0.0.0',
240+
commit: `${argv.commit}` ?? 'unknown',
241+
ghrunid: `${argv.ghrunid}` ?? '0'
242242
},
243243
HostConfig: {
244244
Binds: [

0 commit comments

Comments
 (0)