Skip to content

Commit

Permalink
add release actions and release v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
waderwu committed Apr 28, 2022
1 parent 5904409 commit a415b81
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Java CI with Gradle
name: Release To Github

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

permissions:
contents: read
Expand All @@ -28,8 +26,10 @@ jobs:
with:
java-version: '11'
distribution: 'temurin'
- name : buildPlugin
- name: Build plugin
run: |
./gradlew buildPlugin
- run: |
ls -al build/distributions
- name: Release plugin
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release create ${{ github.event.release.tag_name }} ./build/distributions/* -F RELEASENOTE.md
17 changes: 0 additions & 17 deletions .github/workflows/github-actions-demo.yml

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 2.0.1

1. fix multi head
2. add relation parameter completion
3. fix parameter info hint

## 2.0.0

### Syntax and Language Support
Expand Down
3 changes: 3 additions & 0 deletions RELEASENOTE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1. fix multi head
2. add relation parameter completion
3. fix parameter info hint
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
val ideaVersion = "2021.3.1" //prop("ideaVersion")

group = "com.lfrobeen"
version = "2.0.0"
version = "2.0.1"

plugins {
idea
Expand Down

0 comments on commit a415b81

Please # to comment.