From 8a36d3e72eb9bbb9121b48eee6154d83373bfa99 Mon Sep 17 00:00:00 2001 From: Socolin Date: Thu, 26 Mar 2020 00:19:03 -0400 Subject: [PATCH] Update gradle.yml --- .github/workflows/gradle.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 4ab6d7f..611c641 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -24,17 +24,21 @@ jobs: run: gradle buildPlugin -PintellijPublishToken=unk -PbuildType=stable - name: Build eap version run: gradle buildPlugin -PintellijPublishToken=unk -PbuildType=eap + - name: Rename eap + run: mv build/distributions/*-EAP.zip build/distributions/ApplicationInsightsDebugLogViewer-EAP.zip + - name: Rename stable + run: mv build/distributions/*[0-9].zip build/distributions/ApplicationInsightsDebugLogViewer.zip - name: Upload eap artifact uses: actions/upload-artifact@v2-preview with: # Artifact name name: eap.zip # Directory containing files to upload - path: build/distributions/*-EAP.zip + path: build/distributions/ApplicationInsightsDebugLogViewer-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 + path: build/distributions/ApplicationInsightsDebugLogViewer.zip