-
-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c85d7b5
commit 3e78e6f
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,19 +77,19 @@ jobs: | |
- name: Export version from package.json | ||
run: | ||
echo "PACKAGE_VERSION=$(grep '"version"' ../web/package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV | ||
- name: Ruby Setup for Fastlane | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
working-directory: 'packages/mobile' | ||
- name: Install dependencies | ||
run: yarn install --immutable && yarn install:pods | ||
run: yarn install --immutable && bundle install && yarn install:pods | ||
- run: yarn build:mobile | ||
- name: Set ssh connection to Github | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
- name: Export Apple AppStore Connect API key | ||
run: echo "${{ secrets.APPSTORE_CONNECT_KEY }}" > ios/Authkey.p8 | ||
- name: Ruby Setup for Fastlane | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
working-directory: 'packages/mobile' | ||
- name: Setup fastlane | ||
uses: maierj/[email protected] | ||
env: | ||
|