提交 5f99d815 编写于 作者: S Siddharth Kothari

fix: zip builds and upload/overwrite to preview tag

上级 1b75832e
if: tag IS blank
language: go language: go
branches: branches:
...@@ -27,11 +29,15 @@ jobs: ...@@ -27,11 +29,15 @@ jobs:
script: script:
- go build -tags 'seabolt_static !oss' -o "abc-linux" ./cmd/abc/... - go build -tags 'seabolt_static !oss' -o "abc-linux" ./cmd/abc/...
before_deploy:
- zip -r abc-linux.zip abc-linux
- export TRAVIS_TAG="preview"
deploy: deploy:
provider: releases provider: releases
api_key: $PAT api_key: $PAT
skip_cleanup: true skip_cleanup: true
file: abc-linux file: abc-linux.zip
draft: true draft: true
on: on:
all_branches: true all_branches: true
...@@ -54,11 +60,15 @@ jobs: ...@@ -54,11 +60,15 @@ jobs:
script: script:
- go build -tags 'seabolt_static !oss' -o "abc-darwin" ./cmd/abc/... - go build -tags 'seabolt_static !oss' -o "abc-darwin" ./cmd/abc/...
before_deploy:
- zip -r abc-darwin.zip abc-darwin
- export TRAVIS_TAG="preview"
deploy: deploy:
provider: releases provider: releases
api_key: $PAT api_key: $PAT
skip_cleanup: true skip_cleanup: true
file: abc-darwin file: abc-darwin.zip
draft: true draft: true
on: on:
all_branches: true all_branches: true
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册