Skip to content

Instantly share code, notes, and snippets.

@koizuss
Created February 8, 2017 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koizuss/0fe1e35967a926efb4f8a3c00e7192b6 to your computer and use it in GitHub Desktop.
Save koizuss/0fe1e35967a926efb4f8a3c00e7192b6 to your computer and use it in GitHub Desktop.
Wercker上でprivateリポジトリのsubmodule ref: http://qiita.com/koizuss@github/items/8aed954bd10a8e64fca8
build:
steps:
# ...
# `git` `openssh-client` がないboxの場合は事前にインストール
- script:
name: package install
code: |
yum install -y git openssh-client
# see http://devcenter.wercker.com/docs/git/submodules
- add-ssh-key:
keyname: BITBUCKET_KEY
host: bitbucket.org
# see https://github.com/wercker/step-add-to-known_hosts
- add-to-known_hosts:
hostname: bitbucket.org
fingerprint: 97:8c:1b:f2:6f:14:6b:5c:3b:ec:aa:46:46:74:7c:40
type: rsa
- script:
name: git submodule
code: |
git submodule update --init
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment