Skip to content

Commit d8fe915

Browse files
cipolleschifacebook-github-bot
authored andcommitted
Fix multiple artifacts with the identical extension and classifier. (#51958)
Summary: Pull Request resolved: #51958 There is a copy and paste mistake, from dependencies to core, when uploading artefacts to maven. This change fixes it. ## Changelog: [Internal] - Reviewed By: cortinico Differential Revision: D76435336 fbshipit-source-id: a829b90ba3d4cbfc5528fc9f21dcee7be6a358ff
1 parent f529fd6 commit d8fe915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-native/ReactAndroid/external-artifacts/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ val reactCoreReleaseDSYMArtifact: PublishArtifact =
122122
artifacts.add("externalArtifacts", reactCoreReleaseDSYMArtifactFile) {
123123
type = "tgz"
124124
extension = "tar.gz"
125-
classifier = "reactnative-dependencies-dSYM-release"
125+
classifier = "reactnative-core-dSYM-release"
126126
}
127127

128128
apply(from = "../publish.gradle")

0 commit comments

Comments
 (0)