-
-
Notifications
You must be signed in to change notification settings - Fork 8
37 lines (29 loc) · 851 Bytes
/
push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Push
on:
push:
branches:
- main
jobs:
build:
name: Build app
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Use Xcode 14.1
run: sudo xcode-select --switch /Applications/Xcode_14.1.app
- name: Install Ruby and fastlane
uses: ruby/setup-ruby@v1
with:
# Version is read from .ruby-version
bundler-cache: true
- name: Install node
uses: actions/setup-node@v3
with:
node-version-file: "./Overamped Extension/Resources/.node-version"
- name: Download certs
run: bundle exec fastlane download_certs
env:
MATCH_GIT_PRIVATE_KEY: ${{ secrets.MATCH_GIT_PRIVATE_KEY }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
- name: Build
run: bundle exec fastlane gym