From 60e49f0590c8654fdaad72a9ca520df94695d43f Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Wed, 8 Sep 2021 11:34:43 +0200 Subject: [PATCH] =?UTF-8?q?GitHub=20Actions:=20code-samples.yml=20?= =?UTF-8?q?=E2=80=93=20Collect=20Plugin=20Verifier=20Result?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/code-samples.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/code-samples.yml b/.github/workflows/code-samples.yml index 610efa36d..8d8cf786c 100644 --- a/.github/workflows/code-samples.yml +++ b/.github/workflows/code-samples.yml @@ -85,6 +85,13 @@ jobs: cd code_samples/${{ matrix.plugin }} ./gradlew runPluginVerifier -Pplugin.verifier.home.dir=${{ steps.properties.outputs.pluginVerifierHomeDir }} + - name: Collect Plugin Verifier Result + if: ${{ always() }} + uses: actions/upload-artifact@v2 + with: + name: pluginVerifier-result + path: ${{ github.workspace }}/code_samples/${{ matrix.plugin }}/build/reports/pluginVerifier + mirror: name: Code Samples Mirror if: github.ref == 'refs/heads/main' && github.repository == 'JetBrains/intellij-sdk-docs'