Trying to figure out RCA
This commit is contained in:
parent
c6ded4a74d
commit
df2a50d356
@ -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))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user