Skip to content

Commit 42a7c62

Browse files
cipolleschifacebook-github-bot
authored andcommitted
Ensure that the artifacts have the right extension (facebook#49755)
Summary: Pull Request resolved: facebook#49755 The artifacts are uploaded without the .tar.gz extension and the gradle script fails to upload them to sonatype. This change adds the extensions. ## Changelog: [Internal] - Reviewed By: sammy-SC Differential Revision: D70443149 fbshipit-source-id: c16d1842688b82ac216ffb90ecf2b75f562cca64
1 parent 0bb6243 commit 42a7c62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/prebuild-ios.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,12 @@ jobs:
165165
- name: Upload XCFramework Artifact
166166
uses: actions/upload-artifact@v4
167167
with:
168-
name: ReactNativeDependencies${{ matrix.flavor }}.xcframework
168+
name: ReactNativeDependencies${{ matrix.flavor }}.xcframework.tar.gz
169169
path: packages/react-native/third-party/ReactNativeDependencies${{ matrix.flavor }}.xcframework.tar.gz
170170
- name: Upload dSYM Artifact
171171
uses: actions/upload-artifact@v4
172172
with:
173-
name: ReactNativeDependencies${{ matrix.flavor }}.framework.dSYM
173+
name: ReactNativeDependencies${{ matrix.flavor }}.framework.dSYM.tar.gz
174174
path: |
175175
packages/react-native/third-party/Symbols/ReactNativeDependencies${{ matrix.flavor }}.framework.dSYM.tar.gz
176176
- name: Save XCFramework in Cache

0 commit comments

Comments
 (0)