demo-git-push/.drone.yml
Pierre-Olivier Mercier a72a2df2e7
All checks were successful
continuous-integration/drone/push Build is passing
Initial commit
2023-11-27 18:06:32 +01:00

23 lines
444 B
YAML

---
kind: pipeline
type: docker
name: commit something
platform:
os: linux
arch: arm64
steps:
- name: create a random file
image: alpine:3
commands:
- mkdir -p testing
- echo $${RANDOM} > testing/$${RANDOM}
- name: commit and push hints
image: appleboy/drone-git-push
settings:
branch: "${DRONE_BRANCH}"
remote_name: origin
commit: true
commit_message: "[ci-skip] Doing something"