Skip to content

Commit

Permalink
πŸš€ :: v2.1.7
Browse files Browse the repository at this point in the history
πŸš€ :: v2.1.7
  • Loading branch information
parkuiery authored Sep 9, 2024
2 parents a7db2aa + 4882db4 commit fc4467b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/android-production-deploy-play-store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down Expand Up @@ -68,8 +65,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
Expand Down Expand Up @@ -115,7 +111,7 @@ jobs:
},
{
"title": "Release Note",
"value": "${{ steps.read_file.outputs.release_note }}",
"value": "${{ env.RELEASE_NOTE }}",
"short": false
}
]
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/play/release-notes/ko-KR/default.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[v2.1.6]
[v2.1.7]
β€’ 버그 μˆ˜μ • 및 κΈ°λŠ₯을 μΆ”κ°€ν–ˆμ–΄μš”.

[ μƒˆλ‘œμš΄ κΈ°λŠ₯ ]
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/ProjectProperties.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit fc4467b

Please sign in to comment.