-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (29 loc) · 1.03 KB
/
ci.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
name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17.0.7'
distribution: 'temurin'
cache: gradle
- run: echo $DEBUG_KEY | base64 -d > debug.keystore
- run: echo "NAVER_BASE_URL=\"NAVER_BASE_URL\"" >> local.properties
- run: echo "NAVER_CLIENT_ID=\"NAVER_CLIENT_ID\"" >> local.properties
- run: echo "NAVER_CLIENT_SECRET=\"NAVER_CLIENT_SECRET\"" >> local.properties
- run: echo "GOOGLE_CLIENT_ID=\"GOOGLE_CLIENT_ID\"" >> local.properties
- run: echo "KAKAO_NATIVE_APP_KEY=\"KAKAO_NATIVE_APP_KEY\"" >> local.properties
- run: echo "KAKAO_SCHME=\"KAKAO_SCHME\"" >> local.properties
- run: echo "BASE_URL=\"BASE_URL\"" >> local.properties
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew assembleDebug