From d2a920ee439cd617030f3f25e85aee5ce68e26a9 Mon Sep 17 00:00:00 2001 From: ParkUiel <128464859+parkuiery@users.noreply.github.com> Date: Mon, 9 Sep 2024 08:32:11 +0900 Subject: [PATCH 1/3] cd :: change file --- .github/workflows/android-production-deploy-play-store.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/android-production-deploy-play-store.yml b/.github/workflows/android-production-deploy-play-store.yml index 94ec717e..d574f979 100644 --- a/.github/workflows/android-production-deploy-play-store.yml +++ b/.github/workflows/android-production-deploy-play-store.yml @@ -68,8 +68,7 @@ jobs: - name: Get release note id: read_file run: | - CONTENT=$(cat ./app/src/main/play/release-notes/ko-KR/default.txt) - echo "::set-output name=release_note::$CONTENT" + echo "RELEASE_NOTE=$(cat ./app/src/main/play/release-notes/ko-KR/default.txt)" >> $GITHUB_ENV - name: Generate Release uses: actions/create-release@latest @@ -115,7 +114,7 @@ jobs: }, { "title": "Release Note", - "value": "${{ steps.read_file.outputs.release_note }}", + "value": "${{ env.RELEASE_NOTE }}", "short": false } ] From 503fd6a551ffa4e670e3cb470fd7cac2bbc70ad4 Mon Sep 17 00:00:00 2001 From: ParkUiel <128464859+parkuiery@users.noreply.github.com> Date: Mon, 9 Sep 2024 17:45:09 +0900 Subject: [PATCH 2/3] cd :: change file --- .github/workflows/android-production-deploy-play-store.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/android-production-deploy-play-store.yml b/.github/workflows/android-production-deploy-play-store.yml index d574f979..296bf7ea 100644 --- a/.github/workflows/android-production-deploy-play-store.yml +++ b/.github/workflows/android-production-deploy-play-store.yml @@ -21,9 +21,6 @@ jobs: - name: Grant execute permission for gradlew run: chmod +x gradlew - - name: Create local.properties - run: echo '${{ secrets.LOCAL_PROPERTIES }}' > ./local.properties - - name: Create google-services.json env: DATA: ${{ secrets.GOOGLE_SERVICES_JSON }} @@ -36,7 +33,7 @@ jobs: - name: Create local.properties run: | - echo "BASE_URL_PROD=${{ secrets.BASE_URL_PROD }}" >> ./gradle.properties + echo "BASE_URL_PROD=${{ secrets.BASE_URL_PROD }}" >> ${{ github.workspace }}/gradle.properties - name: Create keystore directory run: mkdir -p ${{ github.workspace }}/app/keystore From 4882db4c7d67ff58af2e4fc94c5b9fbb2b3d9922 Mon Sep 17 00:00:00 2001 From: uiel Date: Mon, 9 Sep 2024 22:47:24 +0900 Subject: [PATCH 3/3] =?UTF-8?q?build=20::=20=EB=B2=84=EC=A0=84=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/play/release-notes/ko-KR/default.txt | 2 +- buildSrc/src/main/kotlin/ProjectProperties.kt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/play/release-notes/ko-KR/default.txt b/app/src/main/play/release-notes/ko-KR/default.txt index 09284206..852b51d0 100644 --- a/app/src/main/play/release-notes/ko-KR/default.txt +++ b/app/src/main/play/release-notes/ko-KR/default.txt @@ -1,4 +1,4 @@ -[v2.1.6] +[v2.1.7] • 버그 수정 및 기능을 추가했어요. [ 새로운 기능 ] diff --git a/buildSrc/src/main/kotlin/ProjectProperties.kt b/buildSrc/src/main/kotlin/ProjectProperties.kt index 3ac94963..9c0eeda1 100644 --- a/buildSrc/src/main/kotlin/ProjectProperties.kt +++ b/buildSrc/src/main/kotlin/ProjectProperties.kt @@ -2,8 +2,8 @@ object ProjectProperties { const val COMPILE_SDK = 34 const val MIN_SDK = 28 const val TARGET_SDK = 34 - const val VERSION_CODE = 13 - const val VERSION_NAME = "2.1.6" + const val VERSION_CODE = 14 + const val VERSION_NAME = "2.1.7" const val COMPOSE_COMPILER_EXTENSION = "1.5.6" const val JVM_TARGET = "18" }