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:
135135 continue-on-error : true
136136 run : |
137137 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
141146
142147 - name : Collect Plugin Verifier Result
143148 if : ${{ always() }}
144149 uses : actions/upload-artifact@v4
145150 with :
146151 name : pluginVerifier-result
147- path : ${{ github.workspace }} /intellij-client/build/reports/pluginVerifier
152+ path : . /intellij-client/build/reports/pluginVerifier
148153
149154 package :
150155 needs : [test]
You can’t perform that action at this time.
0 commit comments