10 lines
240 B
YAML
10 lines
240 B
YAML
stages:
|
|
- greeting
|
|
|
|
greeting_job:
|
|
stage: greeting
|
|
image: alpine:latest # Using Alpine Linux for a lightweight container
|
|
script:
|
|
- echo "🎉 Hello World."
|
|
only:
|
|
- master # This job runs only on pushes to the master branch
|