Skip to content

Commit

Permalink
Begin using drone for releases
Browse files Browse the repository at this point in the history
  • Loading branch information
zachfi committed Mar 10, 2024
1 parent 26371c8 commit af419f6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,26 @@
'make test',
],
},
{
name: 'snapshot',
image: 'zachfi/build-image',
pull: 'always',
commands: [
'make snapshot',
],
},
{
name: 'release',
image: 'zachfi/build-image',
pull: 'always',
commands: [
'make release',
],
when: {
ref: [
'refs/tags/*',
],
},
},
],
}

0 comments on commit af419f6

Please sign in to comment.