We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ba7b83 commit 679e736Copy full SHA for 679e736
1 file changed
.github/workflows/develop_branch.yml
@@ -14,6 +14,12 @@ jobs:
14
- name: check out repository
15
uses: actions/checkout@v4
16
17
+ - name: Generate local.properties
18
+ env:
19
+ KAKAO_NATIVE_APP_KEY: ${{ secrets.KAKAO_NATIVE_APP_KEY }}
20
+ run: |
21
+ echo "kakao.native.app.key=$KAKAO_NATIVE_APP_KEY" >> local.properties
22
+
23
- name: set up JDK 17
24
uses: actions/setup-java@v4
25
with:
@@ -29,9 +35,3 @@ jobs:
29
35
30
36
- name: Build with Gradle
31
37
run: ./gradlew assembleDebug
32
-
33
- - name: Generate local.properties
34
- env:
- KAKAO_NATIVE_APP_KEY: ${{ secrets.KAKAO_NATIVE_APP_KEY }}
- run: |
- echo "kakao.native.app.key=$KAKAO_NATIVE_APP_KEY" >> local.properties
0 commit comments