We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6ec754 commit 6dddf64Copy full SHA for 6dddf64
.github/workflows/build-dev-api.yml
@@ -32,10 +32,16 @@ jobs:
32
env:
33
CODE_BRANCH: "${{ github.event.inputs.code_branch }}"
34
steps:
35
+ - name: check git installation
36
+ run: git --version
37
+ - name: print select branch
38
+ run: echo "Branch: $CODE_BRANCH"
39
+
40
- name: Checkout Code Repository
41
uses: actions/checkout@v4
42
with:
- ref: ${{ github.event.inputs.code_branch }}
43
+ #ref: ${{ github.event.inputs.code_branch }}
44
+ ref: ${{ env.CODE_BRANCH }}
45
- name: Set up Java
46
uses: actions/setup-java@v4
47
0 commit comments