Skip to content

Commit

Permalink
release trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
robotdan committed Jul 4, 2024
1 parent 4f467a2 commit 3ea975d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.savant
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2023, FusionAuth, All Rights Reserved
* Copyright (c) 2018-2024, FusionAuth, All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -68,7 +68,7 @@ target(name: "publish", description: "Releases the Docker images to DockerHub")
def branch = new String(process.getInputStream().readAllBytes(), StandardCharsets.UTF_8).trim()

// The theory is that if we release from a maintenance branch, a staging branch etc. this will be a pre-release or a maintenance release.
def latestVersion = "master" == branch && !project.version.isPreRelease()
def latestVersion = "main" == branch && !project.version.isPreRelease()
def args = ["./publish.sh", "${project.version}" as String, "${latestVersion}" as String]

pb = new ProcessBuilder(args).inheritIO().directory(new File('./docker/fusionauth'))
Expand Down
2 changes: 1 addition & 1 deletion docker/fusionauth/release-trigger
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=1.51.1
version=1.51.2
latestVersion=true
tagSuffix=

0 comments on commit 3ea975d

Please sign in to comment.