From 3c6c9355c43181126fdf444849bd6f19904a3826 Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Fri, 29 Nov 2024 13:55:53 +0530 Subject: [PATCH] Update azure-maven-publish-1espt.yml for Azure Pipelines --- android/azure-maven-publish-1espt.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/android/azure-maven-publish-1espt.yml b/android/azure-maven-publish-1espt.yml index 26e255c25d..89e3c2feb2 100644 --- a/android/azure-maven-publish-1espt.yml +++ b/android/azure-maven-publish-1espt.yml @@ -40,6 +40,15 @@ extends: # Write your commands here bash -c "echo '$GPG_KEY_CONTENT' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'" ls + - task: Bash@3 + displayName: "Checking the directory structure before build" + inputs: + targetType: "inline" + script: | + # Write your commands here + cd .. + cd .. + ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@3 inputs: gradleWrapperFile: 'android/gradlew' @@ -51,6 +60,15 @@ extends: jdkVersionOption: "$(jdkVersion)" sonarQubeRunAnalysis: false spotBugsAnalysis: false + - task: Bash@3 + displayName: "Checking the directory structure after build" + inputs: + targetType: "inline" + script: | + # Write your commands here + cd .. + cd .. + ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@2 displayName: Gradle publish inputs: