-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vikram Kalta
authored and
Vikram Kalta
committed
Apr 3, 2024
1 parent
99aa09a
commit 3b8d4d8
Showing
4 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Publish - Release | ||
|
||
on: | ||
release: | ||
types: [released] | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout project sources | ||
uses: actions/checkout@v3 | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
- name: Setup local.properties | ||
run: | | ||
cat << EOF >> local.properties | ||
sdk.dir=$ANDROID_HOME | ||
host="${{ secrets.HOST }}" | ||
APIKey="${{ secrets.API_KEY }}" | ||
deliveryToken="${{ secrets.DELIVERY_TOKEN }}" | ||
environment="${{ secrets.ENVIRONMENT }}" | ||
contentType="${{ secrets.CONTENT_TYPE }}" | ||
assetUid="${{ secrets.ASSET_UID }}" | ||
EOF | ||
- name: Gradle build and clean | ||
run: | | ||
./gradlew clean build | ||
- name: Publish the SDK | ||
run: | | ||
./gradlew publishAndReleaseToMavenCentral --no-configuration-cache | ||
env: | ||
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.mavenCentralUsername }} | ||
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.mavenCentralPassword }} | ||
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.signingInMemoryKey }} | ||
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.signingInMemoryKeyId }} | ||
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.signingInMemoryKeyPassword }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Publish - Snapshot | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout project sources | ||
uses: actions/checkout@v3 | ||
- name: Check whether the version is a snapshot | ||
run: | | ||
if grep -q "\-SNAPSHOT" ./contentstack/build.gradle | ||
then | ||
: | ||
else | ||
exit 1 | ||
fi | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
- name: Setup local.properties | ||
run: | | ||
cat << EOF >> local.properties | ||
sdk.dir=$ANDROID_HOME | ||
host="${{ secrets.HOST }}" | ||
APIKey="${{ secrets.API_KEY }}" | ||
deliveryToken="${{ secrets.DELIVERY_TOKEN }}" | ||
environment="${{ secrets.ENVIRONMENT }}" | ||
contentType="${{ secrets.CONTENT_TYPE }}" | ||
assetUid="${{ secrets.ASSET_UID }}" | ||
EOF | ||
- name: Build the SDK - Snapshot | ||
run: | | ||
./gradlew clean build | ||
- name: Publish the SDK - Snapshot | ||
run: | | ||
./gradlew publishAllPublicationsToMavenCentralRepository | ||
env: | ||
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.mavenCentralUsername }} | ||
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.mavenCentralPassword }} | ||
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.signingInMemoryKey }} | ||
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.signingInMemoryKeyId }} | ||
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.signingInMemoryKeyPassword }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters