ISSUE-33 #97

Closed
kruti wants to merge 88 commits from kruti/CFTunnels:ISSUE-33 into main
2 changed files with 2 additions and 9 deletions
Showing only changes of commit babd86e063 - Show all commits

View File

@ -16,12 +16,5 @@ jobs:
java-version: '17' java-version: '17'
- name: Validate Gradle Wrapper - name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3 uses: gradle/actions/wrapper-validation@v3
- name: Get latest tag dry run
run: |
echo "VERSION=$(git describe --tags --abbrev=0)"
echo $VERSION
echo "MAJOR=$(echo $VERSION | cut -d "." -f 1)"
echo "MINOR=$(echo $VERSION | cut -d "." -f 2)"
echo "PATCH=$(echo $VERSION | cut -d "." -f 3)"
- name: Gradle build - name: Gradle build
run: ./gradlew build --info run: ./gradlew build --info

View File

@ -26,8 +26,8 @@ jobs:
run: | run: |
echo "VERSION=$(git describe --tags --abbrev=0)" echo "VERSION=$(git describe --tags --abbrev=0)"
echo $VERSION echo $VERSION
echo "MAJOR=$(echo $VERSION | cut -d "." -f 1)" echo "MAJOR=$(echo $VERSION | /usr/bin/cut -d "." -f 1)"
echo "MINOR=$(echo $VERSION | cut -d "." -f 2)" sudo echo "MINOR=$(echo $VERSION | cut -d "." -f 2)"
echo "PATCH=$(echo $VERSION | cut -d "." -f 3)" echo "PATCH=$(echo $VERSION | cut -d "." -f 3)"
- name: Increment version - name: Increment version
run: | run: |