Last active
August 28, 2017 15:34
-
-
Save yamazaki-sensei/d7826bcb61ef991427690b05a3648dca to your computer and use it in GitHub Desktop.
ConcourseでGithubのprivateレポジトリをビルド & デプロイする話 ref: http://qiita.com/almichest/items/e6bd10af2657eb4648ea
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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