11 lines
233 B
YAML
11 lines
233 B
YAML
steps:
|
|
- name: deploy
|
|
image: curlimages/curl
|
|
when:
|
|
- event: push
|
|
branch: main
|
|
commands:
|
|
- |
|
|
RESULT=$(curl -sf http://172.18.0.1:9001/deploy/test-app)
|
|
echo "Deploy triggered: $RESULT"
|