Skip to content

Instantly share code, notes, and snippets.

@yamazaki-sensei
Last active August 28, 2017 15:34
Show Gist options
  • Select an option

  • Save yamazaki-sensei/d7826bcb61ef991427690b05a3648dca to your computer and use it in GitHub Desktop.

Select an option

Save yamazaki-sensei/d7826bcb61ef991427690b05a3648dca to your computer and use it in GitHub Desktop.
ConcourseでGithubのprivateレポジトリをビルド & デプロイする話 ref: http://qiita.com/almichest/items/e6bd10af2657eb4648ea
resources:
- name: as_you_like
type: git
source:
uri: git@github.com:your/private-repository.git
branch: master
private_key: |
-----BEGIN RSA PRIVATE KEY-----
MIIEowIBAAKCAQEAw0ej
(中略)
EhZFPOmxlHtfLMLNYdqQVKHpyAr0d
-----END RSA PRIVATE KEY-----
jobs:
- name: build_as_you_like
plan:
- get: as_you_like
trigger: true
- task: specs
config:
platform: darwin
inputs:
- name: as_you_like
run:
path: sh
args:
- -c
- |
bundle install
bundle exec fastlane beta
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment