Skip to content

Commit 6dddf64

Browse files
committed
modified the build yaml file
1 parent e6ec754 commit 6dddf64

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build-dev-api.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,16 @@ jobs:
3232
env:
3333
CODE_BRANCH: "${{ github.event.inputs.code_branch }}"
3434
steps:
35+
- name: check git installation
36+
run: git --version
37+
- name: print select branch
38+
run: echo "Branch: $CODE_BRANCH"
39+
3540
- name: Checkout Code Repository
3641
uses: actions/checkout@v4
3742
with:
38-
ref: ${{ github.event.inputs.code_branch }}
43+
#ref: ${{ github.event.inputs.code_branch }}
44+
ref: ${{ env.CODE_BRANCH }}
3945
- name: Set up Java
4046
uses: actions/setup-java@v4
4147
with:

0 commit comments

Comments
 (0)