mirror of
https://gitlab.durp.info/durfy/ci-includes/yml.git
synced 2026-05-08 00:11:24 -05:00
12 lines
208 B
Bash
12 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
|