trying to change the type to docker
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build was killed

This commit is contained in:
Andre Henriques 2023-03-18 10:45:02 +00:00
parent a662c733f0
commit db3db3d38d

View File

@ -1,21 +1,29 @@
--- #kind: pipeline
#type: exec
#name: default
#
#steps:
# - name: default
# commands:
# - echo hello world
# - name: default
# commands:
# - echo hello world
#
#trigger:
# branch:
# - main
#
##node:
# #lights: builder
kind: pipeline kind: pipeline
type: exec type: docker
name: Build and Deploy name: default
steps: steps:
- name: greeting - name: test
image: alpine
commands: commands:
- echo hello world - echo hello
- name: greeting - echo world
commands:
- echo hello world
trigger:
branch:
- main
#node:
#lights: builder
...