17 lines
411 B
YAML
17 lines
411 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 ==="
|
|
- echo "Branch: $CI_COMMIT_BRANCH"
|
|
- echo "Commit: $CI_COMMIT_SHA"
|
|
- echo "Message: $CI_COMMIT_MESSAGE"
|
|
- echo "Build locally with: ./ctrl/deploy-domains.sh standalone --build"
|