Skip to content

Commit

Permalink
test 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DarylTodosichuk committed Oct 25, 2024
1 parent d55d30b commit b5b0fb3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 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
BranchInfo:
Branch:
needs: [Setup]
runs-on: ubuntu-latest
environment: dev
Expand All @@ -67,21 +67,21 @@ jobs:
- name: Get current date
id: date-selector
run: echo "date=$(date +'%B %e, %Y')" >> $GITHUB_OUTPUT
- name: List merged branches
- name: List merged branch
id: get-branch
run: |
echo "MERGED_BRANCH=$(git log --merges --pretty=format:"%s" -1)" >> $GITHUB_OUTPUT
MERGED_BRANCH=$(git log --merges --pretty=format:"%s" -1)
echo "Merged branch: $MERGED_BRANCH"
- name: Set repository version variable
- name: Set repository version variables
id: setversion
run: |
gh variable list --env ${{env.TARGET_ENV}}
gh variable set UGM_BUILD_REVISION --env ${{env.TARGET_ENV}} --body "${{steps.get-commit.outputs.sha_short}}"
gh variable list --env ${{env.TARGET_ENV}}
echo "buildArgs UNITY_BUILD_VERSION: ${{env.UGM_BUILD_VERSION}}, UNITY_BUILD_REVISION: ${{env.UGM_BUILD_REVISION}}, Merged Branch: ${{steps.get-branch.outputs.MERGED_BRANCH}}"
echo "buildArgs --env ${{env.TARGET_ENV}} UNITY_BUILD_VERSION: ${{env.UGM_BUILD_VERSION}}, UNITY_BUILD_REVISION: ${{env.UGM_BUILD_REVISION}}, Merged Branch: ${{steps.get-branch.outputs.MERGED_BRANCH}}"
Build:
needs: [Setup,BranchInfo]
needs: [Setup,Branch]
runs-on: ubuntu-latest
environment: dev
steps:
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/docker-build-test.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
BranchInfo:
Branch:
needs: [Setup]
runs-on: ubuntu-latest
environment: dev
Expand All @@ -67,9 +67,11 @@ jobs:
- name: Get current date
id: date-selector
run: echo "date=$(date +'%B %e, %Y')" >> $GITHUB_OUTPUT
- name: List merged branches
- name: List merged branch
id: get-branch
run: |
MERGED_BRANCH=$(gitgit log --merges --pretty=format:"%s" -1)
echo "MERGED_BRANCH=$(git log --merges --pretty=format:"%s" -1)" >> $GITHUB_OUTPUT
MERGED_BRANCH=$(git log --merges --pretty=format:"%s" -1)
echo "Merged branch: $MERGED_BRANCH"
GenerateTag:
needs: [Setup]
Expand Down Expand Up @@ -118,9 +120,9 @@ jobs:
# Update lower environment version elements
gh variable set UGM_BUILD_VERSION --env dev --body "${{steps.tag-selector.outputs.tagversion}}"
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}}"
echo "buildArgs --env ${{env.TARGET_ENV}} UNITY_BUILD_VERSION: ${{env.UGM_BUILD_VERSION}}, UNITY_BUILD_REVISION: ${{env.UGM_BUILD_REVISION}}, Merged Branch: ${{steps.get-branch.outputs.MERGED_BRANCH}}"
Build:
needs: [Setup,BranchInfo,GenerateTag]
needs: [Setup,Branch,GenerateTag]
runs-on: ubuntu-latest
environment: test
steps:
Expand Down
1 change: 1 addition & 0 deletions applications/scripts/datafix-ab#007.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test

0 comments on commit b5b0fb3

Please sign in to comment.