-
How can I trigger build if git tag matches specific mask? Like
v*
forv1.1.0-release
or whatever. -
Is there any workaround in community version to set global env variables for all projects generally?
Thank you.
How can I trigger build if git tag matches specific mask? Like v*
for v1.1.0-release
or whatever.
Is there any workaround in community version to set global env variables for all projects generally?
Thank you.
If you are using github and the latest version of drone, you can do this:
pipeline:
step:
image: ...
when:
ref: ref/tags/v*
There is not. The enterprise version will be published to github later this month and will be free for individuals and businesses with less $1MM annual revenue. So there will be a free option for those who qualify.
If you are using github and the latest version of drone, you can do this:
Is it suitable for any git-storage (bitbucket, gitlab etc), not only for github?