fix for yaml syntax (needs quoting around entire string)

This commit is contained in:
Dagen Brock 2017-01-23 14:13:48 -06:00
parent 06b0e119c0
commit 1d674f255f

View File

@ -22,7 +22,7 @@ package-ubuntu-x:
stage: package
script:
- cp src/config.txt .
- echo "\n\n# CI_BUILD_ID: $CI_BUILD_ID" > config.txt
- 'echo "\n\n# CI_BUILD_ID: $CI_BUILD_ID" > config.txt'
- cp COPYING.txt doc/
artifacts:
paths:
@ -66,7 +66,7 @@ package-ubuntu-sdl2:
stage: package
script:
- cp src/config.txt .
- echo "\n\n# CI_BUILD_ID: $CI_BUILD_ID" > config.txt
- 'echo "\n\n# CI_BUILD_ID: $CI_BUILD_ID" > config.txt'
- cp COPYING.txt doc/
artifacts:
paths:
@ -127,7 +127,7 @@ package-win32:
stage: package
script:
- cp src/config.txt .
- echo "\n\n# CI_BUILD_ID: $CI_BUILD_ID" > config.txt
- 'echo "\n\n# CI_BUILD_ID: $CI_BUILD_ID" > config.txt'
- cp COPYING.txt doc/
- cp /bin/cyggcc_s-1.dll .
- cp /bin/cygstdc++-6.dll .
@ -167,7 +167,7 @@ package-win-sdl:
stage: package
script:
- cp src/config.txt .
- echo "\n\n# CI_BUILD_ID: $CI_BUILD_ID" > config.txt
- 'echo "\n\n# CI_BUILD_ID: $CI_BUILD_ID" > config.txt'
- cp COPYING.txt doc/
- cp /bin/cyggcc_s-1.dll .
- cp /bin/cygstdc++-6.dll .