From cca838f5fbe7743562373adcd2745de4fccf6ec7 Mon Sep 17 00:00:00 2001 From: Ahn-seokjoo Date: Sat, 21 Sep 2024 15:40:28 +0900 Subject: [PATCH 1/5] =?UTF-8?q?[feature]=20suffix=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 1260aede..8f67cca2 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -34,6 +34,7 @@ android { buildTypes { debug { + applicationIdSuffix = ".debug" isDebuggable = true isMinifyEnabled = false buildConfigField("Boolean", "DEBUG_MODE", "true") From ecaedcbd94fa0cce2a74936553c6689d647c8859 Mon Sep 17 00:00:00 2001 From: Ahn-seokjoo Date: Sat, 21 Sep 2024 16:01:52 +0900 Subject: [PATCH 2/5] =?UTF-8?q?[feature]=20ci=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/common-setup.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/common-setup.yaml b/.github/workflows/common-setup.yaml index ab3a1173..815be6f1 100644 --- a/.github/workflows/common-setup.yaml +++ b/.github/workflows/common-setup.yaml @@ -14,7 +14,10 @@ jobs: - name: Putting Json data env: GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }} - run: echo "$GOOGLE_SERVICES_JSON" > /home/runner/work/Dorabangs_Android/Dorabangs_Android/app/google-services.json + GOOGLE_SERVICES_JSON_DEBUG: ${{ secrets.GOOGLE_SERVICES_JSON_DEBUG }} + run: | + echo "$GOOGLE_SERVICES_JSON" > /home/runner/work/Dorabangs_Android/Dorabangs_Android/app/release/google-services.json + echo "$GOOGLE_SERVICES_JSON_DEBUG" > /home/runner/work/Dorabangs_Android/Dorabangs_Android/app/google-services.json - name: Access SERVER_BASE_URL run: | @@ -27,3 +30,4 @@ jobs: path: | /home/runner/work/Dorabangs_Android/Dorabangs_Android/local.properties /home/runner/work/Dorabangs_Android/Dorabangs_Android/app/google-services.json + /home/runner/work/Dorabangs_Android/Dorabangs_Android/app/release/google-services.json From 23019f6d7c2d7d908e60f51012aeb45ad7f453c8 Mon Sep 17 00:00:00 2001 From: Ahn-seokjoo Date: Sat, 21 Sep 2024 16:04:44 +0900 Subject: [PATCH 3/5] =?UTF-8?q?[feature]=20release=20=ED=8F=B4=EB=8D=94=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/common-setup.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/common-setup.yaml b/.github/workflows/common-setup.yaml index 815be6f1..b73edf38 100644 --- a/.github/workflows/common-setup.yaml +++ b/.github/workflows/common-setup.yaml @@ -16,6 +16,7 @@ jobs: GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }} GOOGLE_SERVICES_JSON_DEBUG: ${{ secrets.GOOGLE_SERVICES_JSON_DEBUG }} run: | + mkdir /home/runner/work/Dorabangs_Android/Dorabangs_Android/app/release echo "$GOOGLE_SERVICES_JSON" > /home/runner/work/Dorabangs_Android/Dorabangs_Android/app/release/google-services.json echo "$GOOGLE_SERVICES_JSON_DEBUG" > /home/runner/work/Dorabangs_Android/Dorabangs_Android/app/google-services.json From 6cf87ca6db621a673dbe5ae860ca708974e9e537 Mon Sep 17 00:00:00 2001 From: Ahn-seokjoo Date: Sat, 21 Sep 2024 16:05:47 +0900 Subject: [PATCH 4/5] =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=EC=9A=A9=20lint?= =?UTF-8?q?=20check=20=EC=9E=A0=EC=8B=9C=20=EB=A7=89=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/lint_check.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint_check.yaml b/.github/workflows/lint_check.yaml index aa4523a3..f3986ea8 100644 --- a/.github/workflows/lint_check.yaml +++ b/.github/workflows/lint_check.yaml @@ -1,6 +1,9 @@ name: Lint Check -on: pull_request +on: + pull_request: + types: + - closed jobs: lint-check: From 1b2dbda1d58ba0b17a616e83ccda54b0ded16adc Mon Sep 17 00:00:00 2001 From: Ahn-seokjoo Date: Sat, 21 Sep 2024 16:22:13 +0900 Subject: [PATCH 5/5] =?UTF-8?q?Revert=20"=ED=85=8C=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=EC=9A=A9=20lint=20check=20=EC=9E=A0=EC=8B=9C=20=EB=A7=89?= =?UTF-8?q?=EC=9D=8C"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 6cf87ca6db621a673dbe5ae860ca708974e9e537. --- .github/workflows/lint_check.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/lint_check.yaml b/.github/workflows/lint_check.yaml index f3986ea8..aa4523a3 100644 --- a/.github/workflows/lint_check.yaml +++ b/.github/workflows/lint_check.yaml @@ -1,9 +1,6 @@ name: Lint Check -on: - pull_request: - types: - - closed +on: pull_request jobs: lint-check: