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