Skip to content

Commit

Permalink
datafix test1
Browse files Browse the repository at this point in the history
  • Loading branch information
DarylTodosichuk committed Oct 22, 2024
1 parent 64f7c71 commit c2fb5f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/docker-build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,12 @@ jobs:
run: |
# Extract the major and minor version parts using grep
MAJOR_VERSION=$(echo "${{env.UGM_BUILD_VERSION}}" | grep -oE '^[0-9]+')
MINOR_VERSION=$(echo "${{env.UGM_BUILD_VERSION}}" | grep -oE '\.[0-9]+' | grep -oE '[0-9]+')
MINOR_VERSION=$(echo "${{env.UGM_BUILD_VERSION}}" | grep -oE '\.[0-9]+\.' | grep -oE '[0-9]+')
VERSION_PATCH=$(echo "${{env.UGM_BUILD_VERSION}}" | grep -oE '[0-9]+$')
echo $MAJOR_VERSION
echo $MINOR_VERSION
echo $VERSION_PATCH
echo "${{env.UGM_BUILD_VERSION}}" | grep -oE '^[0-9]+'
echo "${{env.UGM_BUILD_VERSION}}" | grep -oE '\.[0-9]+\.' | grep -oE '[0-9]+'
echo "${{env.UGM_BUILD_VERSION}}" | grep -oE '[0-9]+$'
echo "${{env.UGM_RELEASE_PREFIX}}$MAJOR_VERSION.$MINOR_VERSION.$VERSION_PATCH"
VERSION_PATCH=$((VERSION_PATCH + 1))
echo $VERSION_PATCH
Expand Down
1 change: 1 addition & 0 deletions applications/scripts/datafix-ab#003.sql
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
test1
test2

0 comments on commit c2fb5f7

Please sign in to comment.