13 lines
208 B
Bash
13 lines
208 B
Bash
#!/usr/bin/env bash
|
|
#%%MULTILINE_YAML_START
|
|
#test deployment
|
|
|
|
echo "
|
|
deploy_$VERSION:
|
|
stage: deploy
|
|
script:
|
|
- echo "Deploy to staging server"
|
|
environment:
|
|
name: staging
|
|
" > generated-config.yml
|