We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents becd4dc + 4ec56a8 commit df4472bCopy full SHA for df4472b
1 file changed
.github/workflows/ios_main.yml
@@ -6,17 +6,21 @@ jobs:
6
name: test
7
runs-on: macos-latest
8
steps:
9
- - uses: actions/checkout@v1
10
- - name: Checkout submodule
11
- run: git submodule update --init --recursive
+ - name: checkout
+ uses: actions/checkout@v2
+ with:
12
+ token: ${{ secrets.PAT_TOMTASCHE }}
13
+ submodules: true
14
- - name: Install pods
15
+ - name: pods
16
run: pod install
- - name: Run build.sh
17
+ - name: build.sh
18
run: bash build-simulator.sh
19
20
- name: brew
21
run: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
22
+ - name: fix ninja install
23
+ run: rm '/usr/local/bin/2to3'
24
- name: ninja
25
run: brew install ninja
26
# https://stackoverflow.com/a/57758679/198996
0 commit comments