We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 239c367 commit 4f9c6beCopy full SHA for 4f9c6be
1 file changed
.github/workflows/multi_tenant_deploy.yml
@@ -7,7 +7,6 @@ on:
7
inputs:
8
deploy_branch:
9
description: 'Specify the sdm branch'
10
- default: 'mt_test_rel_1.3.0'
11
required: true
12
cf_space:
13
description: 'Specify the Cloud Foundry space to deploy to'
@@ -22,7 +21,8 @@ jobs:
22
21
- name: Checkout this repository
23
uses: actions/checkout@v2
24
with:
25
- ref: ${{ github.event.inputs.deploy_branch }}
+ # ref: ${{ github.event.inputs.deploy_branch }}
+ ref: mt_test_rel_1.3.0
26
27
- name: Set up JDK 21
28
uses: actions/setup-java@v3
@@ -34,11 +34,7 @@ jobs:
34
run: |
35
echo "branch ...."
36
git branch
37
- echo "input branch.."
38
- echo "${{ github.event.inputs.deploy_branch }}"
39
- git checkout ${{ github.event.inputs.deploy_branch }}
40
-
41
- git branch
+ mvn clean install -P unit-tests -DskipIntegrationTests
42
43
44
# - name: Setup Node.js
0 commit comments