From 3aa51818a99f0a5cca568714687160068e51ca78 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 29 Jan 2023 19:20:21 -0600 Subject: [PATCH] Okay, our initial version is actually correct --- .github/workflows/create_tag.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/create_tag.yml b/.github/workflows/create_tag.yml index 577b638..ede5e04 100644 --- a/.github/workflows/create_tag.yml +++ b/.github/workflows/create_tag.yml @@ -32,6 +32,7 @@ jobs: - name: Increment version run: | + echo $VERSION # Split version into major, minor, and patch MAJOR=$(echo $VERSION | awk -F '.' '{print $1}' | cut -c 2-) MINOR=$(echo $VERSION | awk -F '.' '{print $2}')