-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (35 loc) · 1.05 KB
/
continuous-integration.yml
File metadata and controls
43 lines (35 loc) · 1.05 KB
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
name: Continuous Integration
on:
pull_request:
branches:
- qa
jobs:
Continuous_Integration:
runs-on: macos-latest
environment: Configuration Files
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- name: Install Tuist
run: |
bash <(curl -Ls https://install.tuist.io)
- name: Create Release & Debug Configuration Files
env:
BASE_URL: ${{ secrets.BASE_URL }}
KAKAO_API_KEY: ${{ secrets.KAKAO_API_KEY }}
run: |
cd EATSSU_MVC/EATSSU_MVC/Resources
mkdir Secrets
cd Secrets
echo "BASE_URL = $BASE_URL" >> Release.xcconfig
echo "KAKAO_API_KEY = $KAKAO_API_KEY" >> Release.xcconfig
cat Release.xcconfig
echo "BASE_URL = $BASE_URL" >> Debug.xcconfig
echo "KAKAO_API_KEY = $KAKAO_API_KEY" >> Debug.xcconfig
cat Debug.xcconfig
- name: Install Dependencies
run: |
tuist install
- name: Build Project
run: |
tuist build