Skip to content

Commit a415b81

Browse files
committed
add release actions and release v2.0.1
1 parent 5904409 commit a415b81

File tree

5 files changed

+16
-24
lines changed

5 files changed

+16
-24
lines changed

.github/workflows/gradle.yml renamed to .github/workflows/build-and-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
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

1010
on:
1111
push:
1212
branches: [ master ]
13-
pull_request:
14-
branches: [ master ]
1513

1614
permissions:
1715
contents: read
@@ -28,8 +26,10 @@ jobs:
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

.github/workflows/github-actions-demo.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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

RELEASENOTE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
1. fix multi head
2+
2. add relation parameter completion
3+
3. fix parameter info hint

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
55
val ideaVersion = "2021.3.1" //prop("ideaVersion")
66

77
group = "com.lfrobeen"
8-
version = "2.0.0"
8+
version = "2.0.1"
99

1010
plugins {
1111
idea

0 commit comments

Comments
 (0)