Skip to content

Commit

Permalink
GitHub Actions: produce snapshots only on develop-* branches; chang…
Browse files Browse the repository at this point in the history
…e version to 1.6.5-SNAPSHOT
  • Loading branch information
DevCharly committed Dec 6, 2021
1 parent 7f4efaf commit 9708fec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
needs: build
if: |
github.event_name == 'push' &&
github.ref == 'refs/heads/main' &&
(github.ref == 'refs/heads/main' || startsWith( github.ref, 'refs/heads/develop-' )) &&
github.repository == 'JFormDesigner/FlatLaf'
steps:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

val releaseVersion = "1.6.4"
val developmentVersion = "2.0-SNAPSHOT"
val developmentVersion = "1.6.5-SNAPSHOT"

version = if( java.lang.Boolean.getBoolean( "release" ) ) releaseVersion else developmentVersion

Expand Down

0 comments on commit 9708fec

Please sign in to comment.