diff options
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml index 95811c0224..b44bcb8725 100644 --- a/.drone.yml +++ b/.drone.yml @@ -388,6 +388,13 @@ steps: commands: - git fetch --tags --force + - name: build + pull: always + image: node:10 # this step is kept at the lowest version of node that we support + commands: + - make css + - make js + - name: static pull: always image: techknowlogick/xgo:latest @@ -489,6 +496,13 @@ steps: commands: - git fetch --tags --force + - name: build + pull: always + image: node:10 # this step is kept at the lowest version of node that we support + commands: + - make css + - make js + - name: static pull: always image: techknowlogick/xgo:latest @@ -647,8 +661,6 @@ steps: exclude: - pull_request - - --- kind: pipeline name: docker-linux-arm64 @@ -754,6 +766,9 @@ workspace: base: /go path: src/code.gitea.io/gitea +clone: + disable: true + when: status: - success |