Skip to content

Commit

Permalink
vk-voice-example: added .netrc configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Udumft committed Jul 27, 2020
1 parent bb80ccc commit 47c0de3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ jobs:
xcode: << parameters.xcode >>
steps:
- checkout
- run:
name: Prepare .netrc file
command: |
echo "machine dl.bintray.com" > ~/.netrc
echo "login $BINTRAY_LOGIN" >> ~/.netrc
echo "password $BINTRAY_API_KEY" >> ~/.netrc
echo >> ~/.netrc
echo "machine api.mapbox.com" >> ~/.netrc
echo "login mapbox" >> ~/.netrc
echo "password $SDK_REGISTRY_TOKEN" >> ~/.netrc
- run:
name: Install Dependencies
command: pod install
Expand Down

0 comments on commit 47c0de3

Please sign in to comment.