-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (54 loc) · 1.97 KB
/
ios.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: uploadApp2
on:
push:
branches: [ "Dev" ]
jobs:
build:
runs-on: macOS
steps:
- uses: actions/checkout@v2
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.2.0
# This step was corrected for proper indentation
# - name: Bring ignored files
# uses: actions/checkout@v3
# with:
# key: ${{ secrets.SSH_KEY }}
# - name: Setting Master Key
# run: echo -n "${{ secrets.MASTER_KEY }}" > ./BeatMaster/Tuist/master.key
# - name: Install Tuist
# run: curl -Ls https://install.tuist.io | bash
# working-directory: ./BeatMaster
# - name: Install Fastlane
# run: brew install fastlane
# working-directory: ./BeatMaster
# - uses: ruby/setup-ruby@v1
# with:
# ruby-version: '3.3' # Not needed with a .ruby-version file
# bundler-cache: true #
# - name: Install Tuist mise
# run: curl https://mise.run | sh
# working-directory: ./BeatMaster
# - name: Execute Tuist mise task
# run: |
# mise install [email protected]
# mise use -g [email protected]
# working-directory: ./BeatMaster
- name: Execute Tuist tasks
run: |
make clean
make fetch
# tuist signing decrypt
TUIST_ROOT_DIR=${PWD} make generate
working-directory: ./BeatMaster
- run: fastlane QA
working-directory: ./BeatMaster
env:
# KEYCHAIN_NAME: ${{ secrets.KEYCHAIN_NAME }}
# KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
TEAM_ID: ${{ secrets.TEAM_ID }}
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }}
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }}