Skip to content

Commit

Permalink
Fix group/artifact swap
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com>
  • Loading branch information
Kas-tle committed Oct 14, 2024
1 parent 93220de commit a6afb04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "base-release-action",
"version": "1.5.0",
"version": "1.5.1",
"description": "An action to create incremented releases in a similar style to Jenkins",
"repository": "https://github.com/Kas-tle/base-release-action.git",
"author": "Joshua Castle <packages@kastle.dev>",
Expand Down
4 changes: 2 additions & 2 deletions src/action/inputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,8 @@ function getBodyDependencyUsage(): Inputs.Release['body_dependency_usage'] {
return {
type: "java",
java: {
group_id: core.getInput('releaseBodyDependencyJavaArtifactId') || undefined,
artifact_id: core.getInput('releaseBodyDependencyJavaGroupId') || undefined,
group_id: core.getInput('releaseBodyDependencyJavaGroupId') || undefined,
artifact_id: core.getInput('releaseBodyDependencyJavaArtifactId') || undefined,
version: core.getInput('releaseBodyDependencyJavaVersion') || undefined,
maven_repo: core.getInput('releaseBodyDependencyJavaMavenRepo') || undefined
}
Expand Down

0 comments on commit a6afb04

Please sign in to comment.