Skip to content

Commit

Permalink
test 8.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DarylTodosichuk committed Oct 27, 2024
1 parent c79238b commit f51f9f5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/docker-build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,6 @@ jobs:
# Check the merged branch and set versions accordingly
if [[ "${{ needs.Branch.outputs.MERGED_BRANCH }}" == "test" ]]; then
echo "Using test versions"
# Set test versions here
UNITY_BUILD_VERSION="test-version"
elif [[ "${{ needs.Branch.outputs.MERGED_BRANCH }}" == hotfix/* ]]; then
echo "Incrementing patch version for hotfix"
VERSION_PATCH=$((VERSION_PATCH + 1))
Expand All @@ -117,8 +115,13 @@ jobs:
run: |
git config user.name "GitHub Actions"
git config user.email "github-actions@users.noreply.github.com"
git tag -a "${{steps.tag_selector.outputs.TAGNAME}}" -m "${{steps.tag_selector.outputs.TAGMSG}}"
git push origin "${{steps.tag_selector.outputs.TAGNAME}}"
if [[ "${{ needs.Branch.outputs.MERGED_BRANCH }}" == "test" ]]; then
echo "Using test versions"
elif [[ "${{ needs.Branch.outputs.MERGED_BRANCH }}" == hotfix/* ]]; then
echo "Push tag for hotfix"
git tag -a "${{steps.tag_selector.outputs.TAGNAME}}" -m "${{steps.tag_selector.outputs.TAGMSG}}"
git push origin "${{steps.tag_selector.outputs.TAGNAME}}"
fi
outputs:
TAGNAME: ${{steps.tag_selector.outputs.TAGNAME}}
TAGMSG: ${{steps.tag_selector.outputs.TAGMSG}}
Expand Down
2 changes: 1 addition & 1 deletion applications/scripts/datafix-ab#001.sql
Original file line number Diff line number Diff line change
@@ -1 +1 @@
test 8.5.1
test 8.5.2

0 comments on commit f51f9f5

Please sign in to comment.