mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
CI: Use the correct bash syntax
345afee677
broke the bash
extreppsion that evaluates the strings, causing images to
never be pushed.
This commit is contained in:
parent
b335b4416b
commit
2ec33592e9
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ test manifest:
|
||||||
|
|
||||||
# Push the images to the upstream registry
|
# Push the images to the upstream registry
|
||||||
- |
|
- |
|
||||||
if [ "$CI_COMMIT_REF_NAME" = "master" && "$CI_PROJECT_NAMESPACE" = "gstreamer" ]; then
|
if [ "$CI_COMMIT_REF_NAME" = "master" -a "$CI_PROJECT_NAMESPACE" = "gstreamer" ]; then
|
||||||
docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
|
docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
|
||||||
docker push ${REF}
|
docker push ${REF}
|
||||||
docker push ${LATEST}
|
docker push ${LATEST}
|
||||||
|
|
Loading…
Reference in a new issue