File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
build_images :
12
- if : github.event.label.name == 'ok to test' || github.event.label.name == 'compatibility test'
12
+ if : ${{ github.event.label.name == 'ok to test' || github.event.label.name == 'compatibility test' }}
13
13
runs-on : ubuntu-latest
14
14
outputs :
15
15
telepresenceVersion : ${{ steps.version.outputs.version }}
62
62
run : docker logout
63
63
64
64
run_tests :
65
- if : github.event.label.name == 'ok to test' || github.event.label.name == 'compatibility test'
65
+ if : ${{ github.event.label.name == 'ok to test' || github.event.label.name == 'compatibility test' }}
66
66
strategy :
67
67
fail-fast : false
68
68
matrix :
@@ -101,7 +101,7 @@ jobs:
101
101
fi
102
102
make check-integration
103
103
- name : Compatibility with older manager and agent
104
- if : github.event.label.name == 'compatibility test'
104
+ if : ${{ github.event.label.name == 'compatibility test' }}
105
105
env :
106
106
DEV_MANAGER_VERSION : " 2.21.3"
107
107
uses : nick-fields/retry/@v3
@@ -116,7 +116,7 @@ jobs:
116
116
fi
117
117
make check-integration
118
118
- name : Compatibility with older client
119
- if : github.event.label.name == 'compatibility test'
119
+ if : ${{ github.event.label.name == 'compatibility test' }}
120
120
env :
121
121
DEV_CLIENT_VERSION : " 2.21.3"
122
122
uses : nick-fields/retry/@v3
You can’t perform that action at this time.
0 commit comments