This commit is contained in:
commit
a72a2df2e7
1 changed files with 23 additions and 0 deletions
23
.drone.yml
Normal file
23
.drone.yml
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue