Skip to content

Commit

Permalink
Merge pull request #619 from etspaceman/fixBuildOrder
Browse files Browse the repository at this point in the history
Sort rendered matrixes in GHA
  • Loading branch information
armanbilge authored Aug 3, 2023
2 parents 7a11c3e + f621635 commit 933c2fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ ${indent(rendered.mkString("\n"), 1)}"""
}
}

val renderedMatricesPre = job.matrixAdds map {
val renderedMatricesPre = job.matrixAdds.toList.sortBy(_._1) map {
case (key, values) => s"$key: ${values.map(wrap).mkString("[", ", ", "]")}"
} mkString "\n"

Expand Down

0 comments on commit 933c2fd

Please sign in to comment.