File tree Expand file tree Collapse file tree 5 files changed +16
-24
lines changed Expand file tree Collapse file tree 5 files changed +16
-24
lines changed Original file line number Diff line number Diff line change 55# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
66# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
77
8- name : Java CI with Gradle
8+ name : Release To Github
99
1010on :
1111 push :
1212 branches : [ master ]
13- pull_request :
14- branches : [ master ]
1513
1614permissions :
1715 contents : read
2826 with :
2927 java-version : ' 11'
3028 distribution : ' temurin'
31- - name : buildPlugin
29+ - name : Build plugin
3230 run : |
3331 ./gradlew buildPlugin
34- - run : |
35- ls -al build/distributions
32+ - name : Release plugin
33+ env :
34+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
35+ run : gh release create ${{ github.event.release.tag_name }} ./build/distributions/* -F RELEASENOTE.md
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 2.0.1
4+
5+ 1 . fix multi head
6+ 2 . add relation parameter completion
7+ 3 . fix parameter info hint
8+
39## 2.0.0
410
511### Syntax and Language Support
Original file line number Diff line number Diff line change 1+ 1 . fix multi head
2+ 2 . add relation parameter completion
3+ 3 . fix parameter info hint
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
55val ideaVersion = " 2021.3.1" // prop("ideaVersion")
66
77group = " com.lfrobeen"
8- version = " 2.0.0 "
8+ version = " 2.0.1 "
99
1010plugins {
1111 idea
You can’t perform that action at this time.
0 commit comments