Skip to content

Commit

Permalink
Update gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Socolin authored Mar 26, 2020
1 parent 87a29e0 commit bd25373
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit bd25373

Please sign in to comment.