Skip to content

Commit

Permalink
Publish Kujaku ALPHA snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
ndegwamartin committed Sep 14, 2024
1 parent 85d598d commit 7d869b6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 22 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,7 @@ jobs:
run: git fetch origin master && git rev-list --first-parent --count origin/master

- name: Clean project
run: ./gradlew clean --stacktrace

- name: Build project skipping tests
run: ./gradlew build -x test --stacktrace

- name: Run Instrumented Tests manually
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 34
script: ./gradlew :library:connectedDebug --stacktrace --info
run: ./gradlew clean --stacktrace

- name: Run unit tests with Gradle
run: ./gradlew :library:clean :library:testDebugUnitTest --stacktrace
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/utils.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,6 @@ jobs:
- name: Clean project
run: ./gradlew clean --stacktrace

- name: Build project skipping tests
run: ./gradlew build -x test --stacktrace

- name: Run Instrumented Tests manually
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 34
script: ./gradlew :utils:connectedDebug --stacktrace

- name: Generate & upload utils snapshot artifact AAR (Android Archive) file to Sonatype
run: ./gradlew :utils:clean --stacktrace && ./gradlew :utils:assembleRelease --stacktrace && ./gradlew :utils:publishMavenJavaPublicationToMavenCentralRepository --stacktrace

Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
apply plugin: 'realm-android'
apply plugin: 'maven-publish'

version '0.10.6-SNAPSHOT'
version '0.10.6-ALPHA-SNAPSHOT'

project.version = this.version

Expand Down Expand Up @@ -122,7 +122,7 @@ dependencies { configuration ->
// Comment the line below when creating releases - The line is for development of the library & utils
//implementation (project(":utils")) {
// Uncomment the line below when creating releases
implementation('io.ona.kujaku:utils:0.10.5-SNAPSHOT') {
implementation('io.ona.kujaku:utils:0.10.6-ALPHA-SNAPSHOT') {
transitive = true;
exclude group: 'com.mapbox.mapboxsdk', module: 'mapbox-android-sdk'
exclude group: 'com.android.support', module: 'support-v4'
Expand Down
2 changes: 1 addition & 1 deletion utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
apply plugin: 'jacoco'

version '0.10.6-SNAPSHOT'
version '0.10.6-ALPHA-SNAPSHOT'
project.version = this.version


Expand Down

0 comments on commit 7d869b6

Please sign in to comment.