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