From 499071c58533d8a8a6a47a4b662fbcc98a0c5254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Fri, 25 Nov 2022 17:56:56 -0800 Subject: [PATCH] Upload built plugin for builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This way we can download and test this before publish. Signed-off-by: Bernát Gábor --- .github/workflows/check.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index ecacab2..97b68cf 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -13,7 +13,10 @@ jobs: test: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: + - ubuntu-latest + - macos-latest + - windows-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 @@ -30,3 +33,10 @@ jobs: - name: Run plugin verifier run: ./gradlew runPluginVerifier + + - uses: actions/upload-artifact@v3 + if: matrix.os == 'ubuntu-latest' + with: + name: plugin + path: build/distributions/*.zip + retention-days: 10