Travis CI-将提交合并到特定分支后执行脚本?

时间:2019-12-10 16:12:55

标签: travis-ci

当提交合并到特定分支时,我想运行脚本。我已经在我的YML文件中指定了after_success,但是将在合并之前执行。

after_success:
  #Should update the branch of this to master
  - if [[ "$TRAVIS_BRANCH" == "docker-aws" ]]; then
      make push-image ;
    fi

0 个答案:

没有答案