File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -135,16 +135,21 @@ jobs:
135
135
continue-on-error : true
136
136
run : |
137
137
cd intellij-client
138
- gradlew verifyPlugin -Dplugin.verifier.home.dir=~/.pluginVerifier
139
- REPORTS=$(cat ${{ github.workspace }}/intellij-client/build/reports/pluginVerifier/*/report.md | sed 's/^#/##/')
140
- echo "$REPORTS" >> $GITHUB_STEP_SUMMARY
138
+
139
+ finish() {
140
+ REPORTS=$(cat build/reports/pluginVerifier/*/report.md | sed 's/^#/##/')
141
+ echo "$REPORTS" >> $GITHUB_STEP_SUMMARY
142
+ }
143
+ trap finish EXIT
144
+
145
+ gradle verifyPlugin -Dplugin.verifier.home.dir=~/.pluginVerifier
141
146
142
147
- name : Collect Plugin Verifier Result
143
148
if : ${{ always() }}
144
149
uses : actions/upload-artifact@v4
145
150
with :
146
151
name : pluginVerifier-result
147
- path : ${{ github.workspace }} /intellij-client/build/reports/pluginVerifier
152
+ path : . /intellij-client/build/reports/pluginVerifier
148
153
149
154
package :
150
155
needs : [test]
You can’t perform that action at this time.
0 commit comments