@@ -17,42 +17,6 @@ version =
1717
1818configurations.maybeCreate(" externalArtifacts" )
1919
20- // Those artifacts should be placed inside the `artifacts/hermes-ios-*.tar.gz` location.
21- val hermesiOSDebugArtifactFile: RegularFile =
22- layout.projectDirectory.file(" artifacts/hermes-ios-debug.tar.gz" )
23- val hermesiOSDebugArtifact: PublishArtifact =
24- artifacts.add(" externalArtifacts" , hermesiOSDebugArtifactFile) {
25- type = " tgz"
26- extension = " tar.gz"
27- classifier = " hermes-ios-debug"
28- }
29- val hermesiOSReleaseArtifactFile: RegularFile =
30- layout.projectDirectory.file(" artifacts/hermes-ios-release.tar.gz" )
31- val hermesiOSReleaseArtifact: PublishArtifact =
32- artifacts.add(" externalArtifacts" , hermesiOSReleaseArtifactFile) {
33- type = " tgz"
34- extension = " tar.gz"
35- classifier = " hermes-ios-release"
36- }
37-
38- // Those artifacts should be placed inside the `artifacts/hermes-*.framework.dSYM` location
39- val hermesDSYMDebugArtifactFile: RegularFile =
40- layout.projectDirectory.file(" artifacts/hermes-framework-dSYM-debug.tar.gz" )
41- val hermesDSYMDebugArtifact: PublishArtifact =
42- artifacts.add(" externalArtifacts" , hermesDSYMDebugArtifactFile) {
43- type = " tgz"
44- extension = " tar.gz"
45- classifier = " hermes-framework-dSYM-debug"
46- }
47- val hermesDSYMReleaseArtifactFile: RegularFile =
48- layout.projectDirectory.file(" artifacts/hermes-framework-dSYM-release.tar.gz" )
49- val hermesDSYMReleaseArtifact: PublishArtifact =
50- artifacts.add(" externalArtifacts" , hermesDSYMReleaseArtifactFile) {
51- type = " tgz"
52- extension = " tar.gz"
53- classifier = " hermes-framework-dSYM-release"
54- }
55-
5620// [iOS] React Native Dependencies
5721val reactNativeDependenciesDebugArtifactFile: RegularFile =
5822 layout.projectDirectory.file(" artifacts/ReactNativeDependenciesDebug.xcframework.tar.gz" )
@@ -131,10 +95,6 @@ publishing {
13195 publications {
13296 getByName(" release" , MavenPublication ::class ) {
13397 artifactId = " react-native-artifacts"
134- artifact(hermesiOSDebugArtifact)
135- artifact(hermesiOSReleaseArtifact)
136- artifact(hermesDSYMDebugArtifact)
137- artifact(hermesDSYMReleaseArtifact)
13898 artifact(reactNativeDependenciesDebugArtifact)
13999 artifact(reactNativeDependenciesReleaseArtifact)
140100 artifact(reactNativeDependenciesDebugDSYMArtifact)
0 commit comments