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 @@ -87,20 +87,20 @@ jobs:
87
87
- 'build.xml'
88
88
- 'ivy/ivy.xml'
89
89
- name : test buildconf
90
- if : ${{ steps.filter.outputs.buildconf }}
90
+ if : ${{ steps.filter.outputs.buildconf == 'true' }}
91
91
run : echo "test buildconf"
92
92
# run if the build configuration or both 'core' and 'plugins' files were changed
93
93
- name : test all
94
- if : ${{ steps.filter.outputs.buildconf || ( steps.filter.outputs.core && steps.filter.outputs.plugin ) }}
94
+ if : ${{ steps.filter.outputs.buildconf == 'true' || ( steps.filter.outputs.core == 'true' && steps.filter.outputs.plugin == 'true' ) }}
95
95
run : echo "test all"
96
96
# run: ant clean test -buildfile build.xml
97
97
# run only if 'core' files were changed
98
98
- name : test core
99
- if : ${{ steps.filter.outputs.core && ! steps.filter.outputs.plugins && ! steps.filter.outputs.buildconf }}
99
+ if : ${{ steps.filter.outputs.core == 'true' && steps.filter.outputs.plugins == 'false' && steps.filter.outputs.buildconf == 'false' }}
100
100
run : echo "test core"
101
101
# run: ant clean test-core -buildfile build.xml
102
102
# run only if 'plugins' files were changed
103
103
- name : test plugins
104
- if : ${{ steps.filter.outputs.plugins && ! steps.filter.outputs.core && ! steps.filter.outputs.buildconf }}
104
+ if : ${{ steps.filter.outputs.plugins == 'true' && steps.filter.outputs.core == 'false' && steps.filter.outputs.buildconf == 'false' }}
105
105
run : echo "test plugins"
106
106
# run: ant clean test-plugins -buildfile build.xml
You can’t perform that action at this time.
0 commit comments