Maybe fixed zip step
continuous-integration/drone/push Build is failing Details

This commit is contained in:
kolaente 2019-09-07 00:15:17 +02:00
parent 6b9f1521a8
commit 63d4b2ae60
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 28 additions and 2 deletions

View File

@ -31,9 +31,35 @@ steps:
GOPATH: /srv/app
commands:
- export PATH=$PATH:$GOPATH/bin
- make release
- make release-dirs
- make release-windows
- make release-linux
- make release-darwin
depends_on: [ fetch-tags ]
- name: static-deps
image: techknowlogick/xgo:latest
pull: true
commands:
- export PATH=$PATH:$GOPATH/bin
- make release-dirs
- make release-download-deps
- make release-electron-prepare
depends_on: [ fetch-tags ]
- name: after-build-static
image: techknowlogick/xgo:latest
pull: true
depends_on:
- static
- static-deps
commands:
- make release-copy
- make release-check
- make release-os-package
- release-electron-bundle
- make release-zip
# Push the releases to our pseudo-s3-bucket
- name: release
image: plugins/s3:1
@ -49,4 +75,4 @@ steps:
strip_prefix: dist/zip/
source: dist/zip/*
target: /master/
depends_on: [ static ]
depends_on: [ after-build-static ]