Skip to content

Commit

Permalink
Release to Publish test (#55)
Browse files Browse the repository at this point in the history
* Release to Publish test

* Try to build sample app in release mode

* Seprate step to deploy app

* Fix cache step

* Fixup versions

* use direct gradlew instead of action

* Given Writable permission
  • Loading branch information
AmniX authored Oct 21, 2024
1 parent 617f670 commit a75e06a
Show file tree
Hide file tree
Showing 11 changed files with 94 additions and 110 deletions.
119 changes: 80 additions & 39 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,96 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle

name: Deploy to central

on: workflow_dispatch
on:
release:
types:
- published

concurrency:
group: release
cancel-in-progress: true

permissions:
contents: read
contents: write

jobs:
deploy:
deploy-sdk:
name: Deploy SDK
strategy:
matrix:
include:
# - target: publishIosArm64PublicationToSonatypeRepository
# os: macos-latest
# - target: publishIosArm64PublicationToSonatypeRepository
# os: macos-latest
- target: :shared:publishAllPublicationsToMavenCentralRepository
os: ubuntu-latest
- target: :android:publishAllPublicationsToMavenCentralRepository
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v3
- uses: actions/cache@v4
with:
path: |
~/.konan
key: ${{ runner.os }}-${{ hashFiles('**/.lock') }}
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
passphrase: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Deploy
uses: gradle/gradle-build-action@v3
with:
arguments: ${{ matrix.target }} --no-configuration-cache --no-daemon
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.OSSRH_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.OSSRH_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.MEMORY_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
- uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v3
- uses: actions/cache@v4
with:
path: |
~/.konan
key: ${{ runner.os }}-${{ hashFiles('**/.lock') }}
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
passphrase: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- name: Write release version
run: |
TAG=${{ github.event.release.tag_name }}
echo Version: TAG
echo "SDK_VERSION=${TAG#v}" >> $GITHUB_ENV
- name: Deploy
run: chmod +x gradlew && ./gradlew ${{ matrix.target }} --no-configuration-cache --no-daemon
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.OSSRH_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.OSSRH_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.MEMORY_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
SDK_VERSION: ${{ env.SDK_VERSION }}


deploy-app:
name: Deploy Android App
needs: deploy-sdk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v3
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- name: Write release version
run: |
TAG=${{ github.event.release.tag_name }}
echo Version: TAG
echo "SDK_VERSION=${TAG#v}" >> $GITHUB_ENV
- name: Setup local.properties
run: |
touch local.properties
echo "TEST_SERVER_URL=${{ secrets.TEST_SERVER_URL }}" >> local.properties
cat local.properties
- name: Build SoundBud!
run: ./gradlew :example-android:assembleDevRelease
- name: Publish SoundBud!
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: example-android/build/outputs/apk/dev/release/example-android-dev-release.apk
asset_name: soundBud-release.apk
make_latest: false
env:
SDK_VERSION: ${{ env.SDK_VERSION }}
50 changes: 0 additions & 50 deletions .github/workflows/gradle.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The Android SDK utilize the latest version of jetpack compose.
#### Setup
```kotlin
dependencies {
implementation("com.komoju.mobile.sdk:android:0.0.1")
implementation("com.komoju.mobile.sdk:android:<latest-version-here>")
}
```

Expand Down
3 changes: 1 addition & 2 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ dependencies {
mavenPublishing {
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
signAllPublications()
coordinates(groupId = "com.komoju.mobile.sdk", artifactId = "android", version = "0.0.1")
coordinates(groupId = "com.komoju.mobile.sdk", artifactId = "android", version = (System.getenv("SDK_VERSION") ?: "0.0.1"))
pom {
name.set("Komoju Mobile SDK For Android")
description.set("Komoju Mobile SDK For Android")
Expand Down Expand Up @@ -118,7 +118,6 @@ tasks.matching { task ->

tasks.withType<DokkaTask>().configureEach {
moduleName.set("Komoju Android SDK Documentation")
moduleVersion.set("v0.0.1")
outputDirectory.set(layout.projectDirectory.dir("docs/"))
dokkaSourceSets.configureEach {
displayName.set("Android")
Expand Down
1 change: 1 addition & 0 deletions android/consumer-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-keep class com.komoju.mobile.sdk.remote.dtos.** { *; }
6 changes: 4 additions & 2 deletions example-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@ android {
minSdk = 24
targetSdk = 35
versionCode = 1
versionName = "1.0"
versionName = System.getenv("VERSION") ?: "1.0"
resValue("string", "komoju_consumer_app_scheme", "komapp")
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
signingConfig = signingConfigs.getByName("debug")
}

buildTypes {
release {
isMinifyEnabled = false
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro",
Expand Down
4 changes: 3 additions & 1 deletion example-android/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
#-renamesourcefileattribute SourceFile

-keep class com.komoju.android.ui.remote.dtos.** { *; }
1 change: 0 additions & 1 deletion example-android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher_round"
android:theme="@style/Theme.FakeShopApp">
<activity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package com.komoju.android.ui.screens.store

import cafe.adriel.voyager.core.model.ScreenModel
import cafe.adriel.voyager.core.model.screenModelScope
import com.komoju.android.BuildConfig
import com.komoju.android.sdk.ExperimentalKomojuPaymentApi
import com.komoju.android.sdk.KomojuSDK
import com.komoju.android.sdk.types.Currency
Expand Down Expand Up @@ -45,9 +46,10 @@ class FakeStoreScreenModel : ScreenModel {
remoteApiService.getPublishableKey().body()?.publishableKey
}.onSuccess { publishableKey ->
if (publishableKey == null) {
_uiState.update { it.copy(error = "Failed to fetch publishable key.") }
_uiState.update { it.copy(error = "Failed to fetch publishable key from Server ${BuildConfig.SERVER_URL}") }
}
}.onFailure { error ->
error.printStackTrace()
_uiState.update { it.copy(error = "Failed to fetch publishable key.\n${error.message}") }
}.getOrNull()

Expand Down
12 changes: 0 additions & 12 deletions example-android/src/main/res/xml/network_security_config.xml

This file was deleted.

2 changes: 1 addition & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ android {
mavenPublishing {
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
signAllPublications()
coordinates(groupId = "com.komoju.mobile.sdk", artifactId = "shared", version = "0.0.1")
coordinates(groupId = "com.komoju.mobile.sdk", artifactId = "shared", version = (System.getenv("SDK_VERSION") ?: "0.0.1"))
pom {
name.set("Komoju Mobile SDK")
description.set("Komoju Payment SDK for Mobile")
Expand Down

0 comments on commit a75e06a

Please sign in to comment.