diff --git a/.github/workflows/build_apk.yaml b/.github/workflows/build_apk.yaml index 98f2ada..7596bf2 100644 --- a/.github/workflows/build_apk.yaml +++ b/.github/workflows/build_apk.yaml @@ -2,15 +2,17 @@ name: Build APK on: pull_request: - types: - - closed - branches: - - master - workflow_dispatch: + # TODO uncomment + # types: + # - closed + # branches: + # - master + # workflow_dispatch: jobs: build_release_apk: - if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/')) + # TODO uncomment + # if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/')) uses: personaclick/workflow/.github/workflows/reusable-android-release-apk.yaml@master with: appId: ${{ vars.PERSONACLICK_COURIER_ID }} diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index e06952a..a213595 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -11,10 +11,11 @@ on: jobs: google-play-publish: if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/')) - uses: personaclick/workflow/.github/workflows/reusable-android-google-play-publish.yaml@1cfee7e2e762eed3a3d7d67c413aa0bae7f5ffae + # TODO change commit hash + uses: personaclick/workflow/.github/workflows/reusable-android-google-play-publish.yaml@d6d23e924224f75a134a47b364002c48bf0c88da with: githubAppId: ${{ vars.PERSONACLICK_COURIER_ID }} - packageName: "personaclick.demo_shop" + packageName: "personaClick.demo_shop" aabReleasePath: "app/build/outputs/bundle/prodRelease/app-prod-release.aab" propertiesFilePath: "version.properties" secrets: diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 205fa11..faa8932 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -17,7 +17,7 @@ android { namespace = "personaclick.demo_android.app" defaultConfig { - applicationId = "personaclick.demo_shop" + applicationId = "personaClick.demo_shop" } } @@ -37,4 +37,4 @@ dependencies { implementation(project(":core")) implementation(project(":feature")) implementation(project(":navigation")) -} \ No newline at end of file +}