소스 검색

should skip script steps in deploy post

thelamer 5 년 전
부모
커밋
bec0e378e0
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      .travis.yml

+ 2 - 0
.travis.yml

@@ -71,6 +71,7 @@ jobs:
       if: branch = RC AND type != pull_request
       before_install:
         - ./script/pre_install
+      script: skip
       before_deploy:
         - export RELEASE_TAG=$(cat version.txt)-RC
         - git tag ${RELEASE_TAG}
@@ -118,6 +119,7 @@ jobs:
       if: branch = master AND type != pull_request
       before_install:
         - ./script/pre_install
+      script: skip
       before_deploy:
         - export RELEASE_TAG=$(cat version.txt)
         - git tag ${RELEASE_TAG}