您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
18 行
410 B
18 行
410 B
image: node:6.10.0
|
|
|
|
variables:
|
|
BINTRAY_STAGING: 'https://staging-packages.unity.com'
|
|
|
|
before_script:
|
|
- chmod +x build.sh
|
|
|
|
stages:
|
|
- push_to_packman_staging
|
|
|
|
push_to_packman_staging:
|
|
stage: push_to_packman_staging
|
|
only:
|
|
- tags
|
|
script:
|
|
- ./build.sh npm auth "$BINTRAY_STAGING" "$USER_NAME" "$API_KEY"
|
|
- ./build.sh package-ci publish --git-head $CI_COMMIT_SHA --git-url $CI_REPOSITORY_URL
|