Skip to content

Commit

Permalink
test 6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
DarylTodosichuk committed Oct 24, 2024
1 parent 0924448 commit 3609b6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker-build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
echo "Environment: $TARGET_ENV JFROG_REPO_PATH=$JFROG_REPO_PATH"
echo "..."
env | sort
GenerateTag:
GetBranch:
needs: [Setup]
runs-on: ubuntu-latest
environment: dev
Expand All @@ -67,11 +67,11 @@ jobs:
- name: Get current date
id: date-selector
run: echo "date=$(date +'%B %e, %Y')" >> $GITHUB_OUTPUT
- name: List merged hotfix branches
- name: List merged branches
run: |
git fetch --all
MERGED_BRANCHES=$(git branch -r --merged main | grep 'origin/hotfix/' | sed 's/origin\///')
echo "Merged hotfix branches: $MERGED_BRANCHES"
MERGED_BRANCHES=$(git branch -r --merged ${{env.TARGET_ENV}} | sed 's/origin\///')
echo "Merged branches: $MERGED_BRANCHES"
echo "MERGED_BRANCHES=$MERGED_BRANCHES" >> $GITHUB_ENV
- name: Set repository version variable
id: setversion
Expand All @@ -81,7 +81,7 @@ jobs:
gh variable list --env ${{env.TARGET_ENV}}
echo "buildArgs UNITY_BUILD_VERSION: ${{env.UGM_BUILD_VERSION}}, UNITY_BUILD_REVISION: ${{env.UGM_BUILD_REVISION}}"
Build:
needs: [Setup,GenerateTag]
needs: [Setup,GetBranch]
runs-on: ubuntu-latest
environment: dev
steps:
Expand Down
3 changes: 2 additions & 1 deletion applications/scripts/datafix-ab#006.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
test 1
test 2
test 3
test 3
test 4

0 comments on commit 3609b6b

Please sign in to comment.