Skip to content

Commit e555553

Browse files
authoredAug 15, 2024··
Release 0.11.0 (#204)
* Create wrapper library * Remove legacy docs * Release 0.11.0 * Fix install informations
·
v0.11.2v0.11.0
1 parent c5ecb8f commit e555553

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+134
-975
lines changed
 

‎.github/workflows/build.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ jobs:
99
ANDROID_BASE_CHECKS:
1010
name: Base Checks
1111
runs-on: ubuntu-latest
12-
env:
13-
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
14-
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
1512
steps:
1613
- uses: actions/checkout@v4
1714
- uses: actions/setup-java@v4
@@ -20,14 +17,10 @@ jobs:
2017
distribution: temurin
2118
cache: gradle
2219
- name: Perform base checks
23-
run: ./gradlew demo:assembleDebug lib:deployLocal
20+
run: ./gradlew demo:assembleDebug lib:deployLocal --stacktrace
2421
ANDROID_EMULATOR_TESTS:
2522
name: Emulator Tests
2623
runs-on: ubuntu-latest
27-
# Temporary workaround for deployer issue
28-
env:
29-
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
30-
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
3124
strategy:
3225
fail-fast: false
3326
matrix:

‎.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
distribution: temurin
2323
cache: gradle
2424
- name: Publish to Maven Central
25-
run: ./gradlew deployNexus
25+
run: ./gradlew deployNexus --stacktrace
2626
- name: Publish to GitHub Packages
27-
run: ./gradlew deployGithub
27+
run: ./gradlew deployGithub --stacktrace

0 commit comments

Comments
 (0)
Please sign in to comment.