From bd25373b4a911c968586aedaf1cc777554240781 Mon Sep 17 00:00:00 2001 From: Socolin Date: Wed, 25 Mar 2020 23:59:51 -0400 Subject: [PATCH] Update gradle.yml --- .github/workflows/gradle.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 1a1e6e5..4ab6d7f 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -24,10 +24,17 @@ jobs: run: gradle buildPlugin -PintellijPublishToken=unk -PbuildType=stable - name: Build eap version run: gradle buildPlugin -PintellijPublishToken=unk -PbuildType=eap - - name: Upload artifact - uses: actions/upload-artifact@v1.0.0 + - name: Upload eap artifact + uses: actions/upload-artifact@v2-preview with: # Artifact name - name: plugin + name: eap.zip # Directory containing files to upload - path: build/distributions/ + path: build/distributions/*-EAP.zip + - name: Upload stable artifact + uses: actions/upload-artifact@v2-preview + with: + # Artifact name + name: stable.zip + # Directory containing files to upload + path: build/distributions/*[0-9]-EAP.zip