Trying to figure out RCA #32

Merged
hitanshu merged 1 commits from hitanshu/CFTunnels:tags into test 2025-06-05 18:34:45 +00:00

View File

@ -25,10 +25,10 @@ jobs:
- name: Get latest tag
run: |
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)"
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))