-
Notifications
You must be signed in to change notification settings - Fork 87
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
a42831e
commit c4b85d2
Showing
1 changed file
with
4 additions
and
4 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 |
---|---|---|
|
@@ -26,24 +26,24 @@ jobs: | |
GITHUB_TOKEN: '${{ secrets.CI_BOT_GITHUB_TOKEN }}' | ||
steps: | ||
- name: Install Bot SSH Key | ||
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }} | ||
# if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }} # FIXME: delete the comment | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }} | ||
|
||
- uses: actions/[email protected] | ||
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }} | ||
# if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }} # FIXME: delete the comment | ||
with: | ||
fetch-depth: 0 # to fetch git tags | ||
|
||
- uses: ./.github/actions/bootstrap | ||
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }} | ||
# if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }} # FIXME: delete the comment | ||
env: | ||
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} | ||
INSTALL_GCLOUD: true | ||
|
||
- name: Run Performance Metrics | ||
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }} | ||
# if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }} # FIXME: delete the comment | ||
run: bundle exec fastlane xcmetrics | ||
timeout-minutes: 60 | ||
env: | ||
|