Skip to content

fix updated drone file #7336

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 1, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ steps:
image: techknowlogick/xgo:latest
commands:
- export PATH=$PATH:$GOPATH/bin
- make generate
- make release
environment:
TAGS: bindata sqlite sqlite_unlock_notify
Expand Down Expand Up @@ -455,6 +456,7 @@ steps:
image: techknowlogick/xgo:latest
commands:
- export PATH=$PATH:$GOPATH/bin
- make generate
- make release
environment:
TAGS: bindata sqlite sqlite_unlock_notify
Expand Down Expand Up @@ -519,12 +521,6 @@ workspace:
base: /go
path: src/code.gitea.io/gitea

trigger:
branch:
- master
event:
- push

steps:
- name: build-docs
pull: always
Expand All @@ -544,6 +540,11 @@ steps:
environment:
NETLIFY_TOKEN:
from_secret: netlify_token
when:
branch:
- master
event:
- push

---
kind: pipeline
Expand All @@ -563,6 +564,10 @@ steps:
image: docker:git
commands:
- git fetch --tags --force
when:
event:
exclude:
- pull_request

- name: dryrun
pull: always
Expand Down