-
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.
fix : publish-snapshot workflow has been added
- Loading branch information
1 parent
a3306c9
commit 09b7cc6
Showing
2 changed files
with
48 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Publish - Snapshot | ||
|
||
on: | ||
push: | ||
branches: | ||
- fix/DX-653-publish-snapshot | ||
|
||
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