Skip to content

Commit

Permalink
test 6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
DarylTodosichuk committed Oct 24, 2024
1 parent 3609b6b commit ae24ca6
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
4 changes: 2 additions & 2 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
GetBranch:
BranchInfo:
needs: [Setup]
runs-on: ubuntu-latest
environment: dev
Expand Down Expand Up @@ -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,GetBranch]
needs: [Setup,BranchInfo]
runs-on: ubuntu-latest
environment: dev
steps:
Expand Down
24 changes: 23 additions & 1 deletion .github/workflows/docker-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,28 @@ jobs:
echo "Environment: $TARGET_ENV JFROG_REPO_PATH=$JFROG_REPO_PATH"
echo "..."
env | sort
BranchInfo:
needs: [Setup]
runs-on: ubuntu-latest
environment: dev
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Get short commitId
id: get-commit
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Get current date
id: date-selector
run: echo "date=$(date +'%B %e, %Y')" >> $GITHUB_OUTPUT
- name: List merged branches
run: |
git fetch --all
MERGED_BRANCHES=$(git branch -r --merged ${{env.TARGET_ENV}} | sed 's/origin\///')
echo "Merged branches: $MERGED_BRANCHES"
echo "MERGED_BRANCHES=$MERGED_BRANCHES" >> $GITHUB_ENV
GenerateTag:
needs: [Setup]
runs-on: ubuntu-latest
Expand Down Expand Up @@ -100,7 +122,7 @@ jobs:
gh variable list --env dev
echo "buildArgs --env ${{env.TARGET_ENV}} UNITY_BUILD_VERSION: ${{env.UGM_BUILD_VERSION}}, UNITY_BUILD_REVISION: ${{env.UGM_BUILD_REVISION}}"
Build:
needs: [Setup,GenerateTag]
needs: [Setup,BranchInfo,GenerateTag]
runs-on: ubuntu-latest
environment: test
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,4 +1,5 @@
test 1
test 2
test 3
test 4
test 4
test 5

0 comments on commit ae24ca6

Please sign in to comment.