Skip to content

Commit

Permalink
release: v1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ForteScarlet committed Oct 18, 2024
1 parent 7b66859 commit 2a8615c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,20 @@ jobs:
steps:
# 检出仓库代码
- uses: actions/checkout@v4
# setup Java
- uses: actions/setup-java@v4
with:
distribution: ${{ env.JAVA_DISTRIBUTION }}
java-version: ${{ env.JAVA_VERSION }}
cache: 'gradle'

# setup Gradle
- name: Publish releases
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: ${{ env.GRADLE_VERSION }}
arguments: createChangelog

# Create gitHub release
- name: Create Github Release
uses: softprops/action-gh-release@v2
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/P.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ object P {
override val description: String get() = DESCRIPTION
override val homepage: String get() = HOMEPAGE

const val VERSION = "1.4.2"
const val NEXT_VERSION = "1.4.3"
const val VERSION = "1.4.3"
const val NEXT_VERSION = "1.4.4"

override val snapshotVersion = "$NEXT_VERSION-SNAPSHOT"
override val version = if (isSnapshot()) snapshotVersion else VERSION
Expand Down

0 comments on commit 2a8615c

Please sign in to comment.