added alpine step
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Giles 2020-07-29 20:14:56 +01:00
parent 5dd3af21cc
commit 7fe46dc195
2 changed files with 12 additions and 1 deletions

View File

@ -1,11 +1,18 @@
[
{
name:'test pipe',
name: 'test pipe',
kind: 'pipeline',
type: 'docker',
clone: {
disable: false,
depth: 0,
},
steps: [
{
name: 'step',
image: 'alpine',
},
],
}
]

View File

@ -7,4 +7,8 @@ platform:
os: linux
arch: amd64
steps:
- name: step
image: alpine
...