From 7f886f862dd126f041ca33be32e38abd9e8b89d6 Mon Sep 17 00:00:00 2001 From: vibhutikumar <160819926+vibhutikumar07@users.noreply.github.com> Date: Mon, 13 Jul 2026 11:09:59 +0530 Subject: [PATCH 1/6] Update action.yml Updated the actions file with release branch --- .github/actions/newrelease/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/newrelease/action.yml b/.github/actions/newrelease/action.yml index 157842be..bf4b413a 100644 --- a/.github/actions/newrelease/action.yml +++ b/.github/actions/newrelease/action.yml @@ -34,8 +34,8 @@ runs: #./ensure-license.sh git config --global user.name 'github-actions[bot]' git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git checkout -b develop + git checkout -b Release_v1.10.0 git add app/single-tenant/central-space/demoapp/version.txt git commit -am "Update version to $VERSION" - git push --set-upstream origin develop + git push --set-upstream origin Release_v1.10.0 shell: bash From b96263126c0780db37f4a7bec1b074afc2bb8c47 Mon Sep 17 00:00:00 2001 From: vibhutikumar <160819926+vibhutikumar07@users.noreply.github.com> Date: Mon, 13 Jul 2026 11:13:06 +0530 Subject: [PATCH 2/6] Update main-build-and-deploy-oss.yml --- .github/workflows/main-build-and-deploy-oss.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main-build-and-deploy-oss.yml b/.github/workflows/main-build-and-deploy-oss.yml index ed47682d..c99c8f12 100644 --- a/.github/workflows/main-build-and-deploy-oss.yml +++ b/.github/workflows/main-build-and-deploy-oss.yml @@ -9,12 +9,12 @@ on: types: [ "released" ] permissions: - contents: read + contents: write jobs: update-version: - environment: maven-central + #environment: maven-central runs-on: ubuntu-latest #needs: blackduck steps: @@ -29,7 +29,7 @@ jobs: - name: Checkout uses: actions/checkout@v6 with: - token: ${{ secrets.GH_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} - name: Update version uses: ./.github/actions/newrelease From 5bab9c5b5f9b2f56826a65305a1fc04609f4a71d Mon Sep 17 00:00:00 2001 From: vibhutikumar <160819926+vibhutikumar07@users.noreply.github.com> Date: Mon, 13 Jul 2026 11:31:01 +0530 Subject: [PATCH 3/6] Update action.yml --- .github/actions/newrelease/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/newrelease/action.yml b/.github/actions/newrelease/action.yml index bf4b413a..151b5bbe 100644 --- a/.github/actions/newrelease/action.yml +++ b/.github/actions/newrelease/action.yml @@ -34,8 +34,8 @@ runs: #./ensure-license.sh git config --global user.name 'github-actions[bot]' git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git checkout -b Release_v1.10.0 + git checkout -b Release_v1.10.1 git add app/single-tenant/central-space/demoapp/version.txt git commit -am "Update version to $VERSION" - git push --set-upstream origin Release_v1.10.0 + git push --set-upstream origin Release_v1.10.1 shell: bash From 68a360dcd2d09cd5dde8de92b0cec8e2e42aee7f Mon Sep 17 00:00:00 2001 From: vibhutikumar <160819926+vibhutikumar07@users.noreply.github.com> Date: Mon, 13 Jul 2026 11:34:17 +0530 Subject: [PATCH 4/6] Update pom.xml updated pom with latest sdm version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b8e376a2..461a2f69 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ - 1.10.1-SNAPSHOT + 1.10.1 21 ${java.version} ${java.version} From ad7b9d56942bc08b01ebc822c0ea3ae372af7d8c Mon Sep 17 00:00:00 2001 From: vibhutikumar <160819926+vibhutikumar07@users.noreply.github.com> Date: Mon, 13 Jul 2026 11:38:43 +0530 Subject: [PATCH 5/6] Update action.yml --- .github/actions/newrelease/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/newrelease/action.yml b/.github/actions/newrelease/action.yml index 151b5bbe..37f4677d 100644 --- a/.github/actions/newrelease/action.yml +++ b/.github/actions/newrelease/action.yml @@ -28,14 +28,14 @@ runs: - name: Update version run: | VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') - echo $VERSION > app/single-tenant/central-space/demoapp/version.txt + echo $VERSION > cap-notebook/version.txt mvn --no-transfer-progress versions:set-property -Dproperty=revision -DnewVersion=$VERSION #chmod +x ensure-license.sh #./ensure-license.sh git config --global user.name 'github-actions[bot]' git config --global user.email 'github-actions[bot]@users.noreply.github.com' git checkout -b Release_v1.10.1 - git add app/single-tenant/central-space/demoapp/version.txt + git add cap-notebook/version.txt git commit -am "Update version to $VERSION" git push --set-upstream origin Release_v1.10.1 shell: bash From 7403d9d3524c8c3a3e4788b711d040fe3c8de1ca Mon Sep 17 00:00:00 2001 From: vibhutikumar <160819926+vibhutikumar07@users.noreply.github.com> Date: Mon, 13 Jul 2026 11:43:47 +0530 Subject: [PATCH 6/6] Update main-build-and-deploy-oss.yml --- .github/workflows/main-build-and-deploy-oss.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main-build-and-deploy-oss.yml b/.github/workflows/main-build-and-deploy-oss.yml index c99c8f12..74bfb732 100644 --- a/.github/workflows/main-build-and-deploy-oss.yml +++ b/.github/workflows/main-build-and-deploy-oss.yml @@ -9,7 +9,7 @@ on: types: [ "released" ] permissions: - contents: write + contents: read jobs: