Skip to content

Commit

Permalink
[chore] "" -> '' 로 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhooon committed May 21, 2024
1 parent 3a5cf73 commit 7f650d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
java-version: 17

- name: Generate unifest.jks
run: echo "${{ secrets.UNIFEST_KEYSTORE }}" | base64 --decode > ./app/unifest.jks
run: echo '${{ secrets.UNIFEST_KEYSTORE }}' | base64 --decode > ./app/unifest.jks

- name: Generate secrets.properties
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
echo '${{ secrets.KEYSTORE_PROPERTIES }}' >> ./keystore.properties
- name: Generate google-services.json
run: echo "${{ secrets.GOOGLE_SERVICES }}" | base64 --d > ./app/google-services.json
run: echo '${{ secrets.GOOGLE_SERVICES }}' | base64 --d > ./app/google-services.json

- name: Extract Version Name
run: echo "##[set-output name=version;]v$(echo '${{ github.event.pull_request.title }}' | grep -oP 'release v\K[0-9]+\.[0-9]+\.[0-9]+')"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/android-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
echo '${{ secrets.KEYSTORE_PROPERTIES }}' >> ./keystore.properties
- name: Generate google-services.json
run: echo "${{ secrets.GOOGLE_SERVICES }}" | base64 --d > ./app/google-services.json
run: echo '${{ secrets.GOOGLE_SERVICES }}' | base64 --d > ./app/google-services.json

- name: Code style checks
run: ./gradlew ktlintCheck detekt
Expand Down

0 comments on commit 7f650d9

Please sign in to comment.