Skip to content

Commit

Permalink
[FEAT]#108: keystore github에 올려요
Browse files Browse the repository at this point in the history
  • Loading branch information
flash159483 committed Aug 19, 2024
1 parent 4612f2e commit d577a16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/opened-pr-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
echo MOCK_BASE_URL=\"${{ secrets.MOCK_BASE_URL }}\" >> ./local.properties
echo FACEBOOK_APP_ID=\"${{ secrets.FACEBOOK_APP_ID }}\" >> ./local.properties
echo BASE_URL=\"${{ secrets.BASE_URL }}\" >> ./local.properties
echo SIGNED_STORE_PASSWORD=\"${{ secrets.SIGNED_STORE_PASSWORD }}\" >> ./local.properties
echo SIGNED_KEY_ALIAS=\"${{ secrets.SIGNED_KEY_ALIAS }}\" >> ./local.properties
echo SIGNED_KEY_PASSWORD=\"${{ secrets.SIGNED_KEY_PASSWORD }}\" >> ./local.properties
echo SIGNED_STORE_PASSWORD=${{ secrets.SIGNED_STORE_PASSWORD }} >> ./local.properties
echo SIGNED_KEY_ALIAS=${{ secrets.SIGNED_KEY_ALIAS }} >> ./local.properties
echo SIGNED_KEY_PASSWORD=${{ secrets.SIGNED_KEY_PASSWORD }} >> ./local.properties
- name: add google-services.json
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import java.io.File

class AndroidApplicationPlugin : Plugin<Project> {
override fun apply(target: Project) {
val file = File(target.rootDir, "local.properties")
val file = File(target.rootProject.rootDir, "local.properties")
val property = loadProperties(file.absolutePath)

with(target) {
Expand Down

0 comments on commit d577a16

Please sign in to comment.