mirror of https://github.com/xiaoqidun/ihash.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
687 B
YAML
27 lines
687 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: generate
|
|
pull: if-not-exists
|
|
image: hkccr.ccs.tencentyun.com/xiaoqidun/build
|
|
commands:
|
|
- build -f build.sh -i ihash.go -o release/ihash
|
|
- name: build
|
|
pull: if-not-exists
|
|
image: hkccr.ccs.tencentyun.com/xiaoqidun/goenv
|
|
commands:
|
|
- ./build.sh
|
|
- name: upload
|
|
image: hkccr.ccs.tencentyun.com/xiaoqidun/gocos
|
|
settings:
|
|
secret_id:
|
|
from_secret: cos_secret_id
|
|
secret_key:
|
|
from_secret: cos_secret_key
|
|
bucket_url:
|
|
from_secret: cos_bucket_url
|
|
source: release/
|
|
target: product/ihash
|
|
strip_prefix: release/ |