mirror of
https://gitlab.durp.info/durfy/ci-includes/yml.git
synced 2026-05-07 07:50:30 -05:00
15 lines
255 B
Bash
15 lines
255 B
Bash
#!/usr/bin/env bash
|
|
#%%MULTILINE_YAML_START
|
|
#test deployment
|
|
|
|
echo "
|
|
deploy_$VERSION:
|
|
stage: deploy
|
|
needs:
|
|
- job: build
|
|
optional: true
|
|
script:
|
|
- echo "Deploy to staging server"
|
|
environment:
|
|
name: staging
|
|
" > generated-config.yml
|