Initial commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
nemunaire 2023-11-27 18:03:53 +01:00
commit a72a2df2e7

23
.drone.yml Normal file
View File

@ -0,0 +1,23 @@
---
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"