Skip to content

Commit

Permalink
🔖 [RELEASE] Bump and release version 21.6.0
Browse files Browse the repository at this point in the history
👷 Also, forgot to update workflows to trigger on `main` branch

Signed-off-by: palexdev <alessandro.parisi406@gmail.com>
  • Loading branch information
palexdev committed Jun 8, 2024
1 parent 9042a62 commit b89f8fa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Build rewrite
name: 'Build'

on:
push:
branches: [ rewrite ]
branches: [ main ]
pull_request:
branches: [ rewrite ]
branches: [ main ]

env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: 'Release'

on:
push:
branches: [ rewrite ]
branches: [ main ]
pull_request:
branches: [ rewrite ]
branches: [ main ]

env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew build -x test -x processCSS
run: ./gradlew build -x test

- name: Release
run: ./gradlew publish releaseRepository
run: ./gradlew publish releaseRepository --stacktrace
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ javafx {
configurations {
// Remove vanniktech non-sense
gradle.taskGraph.whenReady { graph ->
if (graph.hasTask(simpleJavadocJar)) {
simpleJavadocJar.enabled = false
if (graph.hasTask(plainJavadocJar)) {
plainJavadocJar.enabled = false
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#--------------------------------------#
GROUP=io.github.palexdev
POM_ARTIFACT_ID=virtualizedfx
VERSION_NAME=21.5.0
VERSION_NAME=21.6.0
POM_NAME=virtualizedfx
POM_DESCRIPTION=Alternative VirtualFlows for JavaFX
POM_INCEPTION_YEAR=2021
Expand All @@ -19,7 +19,7 @@ POM_PACKAGING=jar
#--------------------------------------#
# Versions #
#--------------------------------------#
vfx=21.5.0
vfx=21.6.0
jdk=21
# Plugins
jfxPlugin=0.1.0
Expand Down

0 comments on commit b89f8fa

Please sign in to comment.