First major release #68

Merged
hitanshu merged 70 commits from test into main 2025-09-20 18:10:19 +00:00
Showing only changes of commit 4afeb9f6b2 - Show all commits

View File

@ -22,14 +22,14 @@ jobs:
run: echo $(which cut)
- name: Get latest tag
run: |
export "VERSION=$(git describe --tags --abbrev=0)" >> $GITEA_OUTPUT
echo "${GITEA_OUTPUT}"
export "VERSION=$(git describe --tags --abbrev=0)"
echo "${VERSION}"
export "MAJOR=$(echo ${VERSION} | /usr/bin/cut -d "." -f 1)"
echo "${MAJOR}"
export "MINOR=$(echo ${VERSION} | cut -d "." -f 2)"
echo "${MINOR}"
export "PATCH=$(echo ${VERSION} | cut -d "." -f 3)"
echo "${PATCH}
echo "${PATCH}"
- name: Increment version
run: |
PATCH=$((PATCH + 1))