Merge branch 'backport/develop-branch-hiding-fix' into 'develop'
Backport "Fix hiding branch name logic" to develop See merge request pleroma/pleroma!1846
This commit is contained in:
commit
e0da0d4f9e
1 changed files with 1 additions and 1 deletions
2
mix.exs
2
mix.exs
|
@ -221,7 +221,7 @@ defp version(version) do
|
|||
branch_name <- String.trim(branch_name),
|
||||
branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
|
||||
true <-
|
||||
!Enum.all?(["master", "HEAD", "release/", "stable"], fn name ->
|
||||
!Enum.any?(["master", "HEAD", "release/", "stable"], fn name ->
|
||||
String.starts_with?(name, branch_name)
|
||||
end) do
|
||||
branch_name =
|
||||
|
|
Loading…
Reference in a new issue