File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -102,14 +102,12 @@ jobs:
102
102
run : ./gradlew test
103
103
104
104
- name : Publish tests result to artifacts
105
- if : ${{ failure() }}
106
105
uses : actions/upload-artifact@v4
107
106
with :
108
107
name : tests-report
109
108
path : ${{ github.workspace }}/build/reports/tests
110
109
111
110
- name : Publish code coverage report to artifacts
112
- if : ${{ always() }}
113
111
uses : actions/upload-artifact@v4
114
112
with :
115
113
name : code-coverage-report
@@ -153,7 +151,6 @@ jobs:
153
151
run : ./gradlew runPluginVerifier -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
154
152
155
153
- name : Collect Plugin Verifier Result
156
- if : ${{ always() }}
157
154
uses : actions/upload-artifact@v4
158
155
with :
159
156
name : plugin-verifier-report
@@ -178,6 +175,12 @@ jobs:
178
175
with :
179
176
gradle-home-cache-cleanup : true
180
177
178
+ - name : Get tests result from artifacts
179
+ uses : actions/download-artifact@v4
180
+ with :
181
+ name : tests-report
182
+ path : ${{ github.workspace }}/build/reports/tests
183
+
181
184
- name : SonarCloud scans
182
185
uses : ./.github/actions/sonar
183
186
env :
You can’t perform that action at this time.
0 commit comments