16 lines
398 B
YAML
16 lines
398 B
YAML
# Soleprint Pipeline
|
|
# Build happens locally, this just logs deployment status
|
|
|
|
when:
|
|
- event: push
|
|
- event: manual
|
|
|
|
steps:
|
|
- name: notify
|
|
image: alpine
|
|
commands:
|
|
- echo "=== Soleprint ${CI_COMMIT_SHA:0:7} ==="
|
|
- echo "Branch: ${CI_COMMIT_BRANCH}"
|
|
- echo "Message: ${CI_COMMIT_MESSAGE}"
|
|
- echo "Build locally with: ./ctrl/deploy-domains.sh standalone --build"
|