File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ name: release
3
3
on :
4
4
workflow_dispatch :
5
5
inputs :
6
- skip_tests :
7
- description : ' Skip compliance tests'
6
+ with_tests :
7
+ description : ' Run compliance tests'
8
8
required : false
9
9
type : choice
10
10
options :
11
- - ' false'
12
11
- ' true'
12
+ - ' false'
13
13
14
14
jobs :
15
15
build-and-test :
@@ -83,13 +83,14 @@ jobs:
83
83
!mods/**/src
84
84
!mods/**/test
85
85
!mods/**/dist/*.ts
86
- # This step is only executed for workflow_dispatch events with skip_tests = false
86
+ # This step is only executed for workflow_dispatch events with with_tests = true
87
87
- name : SIP Connect v1.1 Compliance Tests
88
- if : github.event.inputs.skip_tests == 'false '
88
+ if : github.event.inputs.with_tests == 'true '
89
89
run : |
90
- docker-compose -f compose.yaml -f compose.dev.yaml up \
91
- compliance edgeport01 edgeport02 dispatcher registry requester apiserver connect location \
92
- --build --abort-on-container-exit --exit-code-from compliance
90
+ docker-compose -f compose.yaml -f compose.dev.yaml up \
91
+ --build --abort-on-container-exit --exit-code-from compliance \
92
+ compliance edgeport01 edgeport02 dispatcher registry requester apiserver connect location
93
+
93
94
publish-to-docker-hub :
94
95
name : Publish to Docker Hub
95
96
uses : ./.github/workflows/docker-hub-release.yaml
You can’t perform that action at this time.
0 commit comments