Trying to figure out RCA

This commit is contained in:
hitanshu310 2025-06-06 00:30:25 +05:30
parent df2a50d356
commit cc64b7c748

View File

@ -18,27 +18,16 @@ jobs:
with: with:
distribution: 'zulu' distribution: 'zulu'
java-version: '17' java-version: '17'
- name: Validate Gradle Wrapper - name: Get Next Patch Version
uses: gradle/actions/wrapper-validation@v3 id: version
- name: Check if cut is installed uses: reecetech/version-increment@v2024.10.1
run: echo $(which cut) with:
- name: Get latest tag scheme: semver
run: | increment: patch
echo "VERSION=$(git describe --tags --abbrev=0)"
echo "${VERSION}"
echo "MAJOR=$(echo ${VERSION} | /usr/bin/cut -d "." -f 1)"
sudo echo "MINOR=$(echo ${VERSION} | cut -d "." -f 2)"
echo "PATCH=$(echo ${VERSION} | cut -d "." -f 3)"
- name: Increment version
run: |
PATCH=$((PATCH + 1))
echo "NEW_VERSION=$(echo $MAJOR.$MINOR.$PATCH)"
- name: Extract commit message
run: echo "COMMIT_MESSAGE=$(git log -1 --pretty=%B)"
- name: Create and push tag - name: Create and push tag
run: | run: |
git tag -a ${NEW_VERSION} -m "${COMMIT_MESSAGE}" git tag -a ${{ steps.version.outputs.version }} -m "Tagging with ${{ steps.version.outputs.version }}"
git push origin ${NEW_VERSION} git push origin ${{ steps.version.outputs.version }}
- name: Log in to Gitea Docker Registry - name: Log in to Gitea Docker Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with: