Skip to content

Commit c115a28

Browse files
committed
🎨 Added build workflow & refactor publish process
1 parent be7ea0d commit c115a28

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

.github/workflows/build.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Run tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/[email protected]
10+
- name: Set up JDK 11 for running Gradle
11+
uses: actions/[email protected]
12+
with:
13+
distribution: temurin
14+
java-version: 17
15+
16+
- name: Grant Permission to Execute Gradle
17+
run: chmod +x gradlew
18+
19+
- name: Build with Gradle
20+
uses: gradle/gradle-build-action@v2
21+
with:
22+
arguments: build

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
echo "Publishing library🚀"
3232
./gradlew publish --no-daemon --no-parallel
3333
echo "Published✅"
34-
34+
3535
echo "Releasing repository...🚀"
36-
./gradlew closeAndReleaseRepository --repository iogithubmiddleware-labs-1042
36+
./gradlew closeAndReleaseRepository
3737
echo "Released✅"
3838
env:
3939
ORG_GRADLE_PROJECT_VERSION_NAME: ${{ github.event.inputs.versionName }}

gradle.properties

-2
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,3 @@ android.useAndroidX=true
1919
# resources declared in the library itself and none from the library's dependencies,
2020
# thereby reducing the size of the R class for that library
2121
android.nonTransitiveRClass=true
22-
RELEASE_SIGNING_ENABLED=true
23-
SONATYPE_HOST=S01

sdk/gradle.properties

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
RELEASE_SIGNING_ENABLED=true
2+
SONATYPE_HOST=S01
3+
SONATYPE_AUTOMATIC_RELEASE=true

0 commit comments

Comments
 (0)