MeshTalos-Client/managed_components/espressif__arduino-esp32/.gitlab/workflows/sample.yml
2025-12-03 14:20:11 +08:00

16 lines
427 B
YAML

hello-world:
stage: test
rules:
- if: $CI_PIPELINE_SOURCE == "push"
- if: $CI_PIPELINE_SOURCE == "web"
- if: $CI_PIPELINE_SOURCE == "trigger"
variables:
PIPELINE_TRIGGER_TOKEN: $CI_PIPELINE_TRIGGER_TOKEN
script:
- echo "Hello, World from GitLab CI!"
- echo "Hello World!" > sample_artifact.txt
artifacts:
name: "sample-artifact"
paths:
- sample_artifact.txt
expire_in: 1 day