diff options
author | techknowlogick <techknowlogick@gitea.io> | 2020-01-22 16:25:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-22 16:25:41 -0500 |
commit | e6730c9f18e54f9a3a23f7e5f6944d3fdd86b7eb (patch) | |
tree | ac2a376dfbfe29b80fb5d1345074cf327e8f4c8b /.drone.yml | |
parent | 2ff2cddd16e892eb24a61cb3cc90735d1fcd654c (diff) | |
download | gitea-e6730c9f18e54f9a3a23f7e5f6944d3fdd86b7eb.tar.gz gitea-e6730c9f18e54f9a3a23f7e5f6944d3fdd86b7eb.zip |
Frontport: Fix regression with tag test running (#9941) (#9942)
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 4c0504df77..5e62a85a7a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -114,6 +114,12 @@ steps: GOSUMDB: sum.golang.org TAGS: bindata sqlite sqlite_unlock_notify + - name: tag-pre-condition + pull: always + image: alpine/git + commands: + - git update-ref refs/heads/tag_test ${DRONE_COMMIT_SHA} + - name: unit-test pull: always image: golang:1.13 |