We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33b1027 commit 92b993cCopy full SHA for 92b993c
.drone.yml
@@ -114,6 +114,17 @@ steps:
114
- push
115
- pull_request
116
117
+ - name: tag-pre-condition
118
+ pull: always
119
+ image: alpine/git
120
+ commands:
121
+ - git update-ref refs/heads/tag_test ${DRONE_COMMIT_SHA}
122
+ depends_on:
123
+ - build
124
+ when:
125
+ event:
126
+ - tag
127
+
128
- name: tag-test
129
pull: always
130
image: golang:1.12
@@ -122,7 +133,7 @@ steps:
133
environment:
134
TAGS: bindata
135
depends_on:
- - build
136
+ - tag-pre-condition
137
when:
138
event:
139
- tag
0 commit comments