Skip to content

Commit 92186e1

Browse files
committed
DESENG-820 Hotfix: Quoting for build arguments in CI workflow
1 parent 462872b commit 92186e1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/met-api-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ jobs:
6262
run: |
6363
docker build . --file Dockerfile \
6464
--build-arg MET_BUILD_COMMIT_HASH=${{ github.sha }} \
65-
--build-arg MET_BUILD_DATE=$(date -u +'%b %d, %Y') \
65+
--build-arg MET_BUILD_DATE="$(date -u +'%b %d, %Y')" \
6666
--build-arg MET_BUILD_BRANCH=${{ github.ref_name }} \
67-
--build-arg MET_GITHUB_REPO=https://github.com/${{ github.repository }} \
67+
--build-arg MET_GITHUB_REPO="https://github.com/${{ github.repository }}" \
6868
--tag image
6969
7070
- name: Push image

0 commit comments

Comments
 (0)