1234567891011121314151617181920212223 |
- kind: pipeline
- type: docker
- name: default
- steps:
- - name: build
- image: alpine
- commands:
- - echo 'Hello from Drone...!' > index.html
- - name: push commit
- image: appleboy/drone-git-push
- settings:
- branch: master
- remote: git@notabug.org:adnan360/drone-html-test.git
- force: false
- commit: true
- commit_message: "Drone build ${DRONE_COMMIT_SHA:0:7}"
- author_name: "Adnan Shameem"
- author_email: "adnan360@protonmail.com"
- ssh_key:
- from_secret: ssh_key
|