ISSUE-33 #96

Merged
hitanshu merged 88 commits from kruti/CFTunnels:ISSUE-33 into test 2026-01-14 17:26:26 +00:00
Showing only changes of commit 926feca855 - Show all commits

View File

@ -25,10 +25,10 @@ jobs:
- name: Get latest tag - name: Get latest tag
run: | run: |
echo "VERSION=$(git describe --tags --abbrev=0)" echo "VERSION=$(git describe --tags --abbrev=0)"
echo $VERSION echo "${VERSION}"
echo "MAJOR=$(echo $VERSION | /usr/bin/cut -d "." -f 1)" echo "MAJOR=$(echo ${VERSION} | /usr/bin/cut -d "." -f 1)"
sudo 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: |
PATCH=$((PATCH + 1)) PATCH=$((PATCH + 1))