-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Capture ios|android sourcemaps as deploy job artifacts #9641
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b5136f6
ac455fe
db7bc3a
eabc197
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,7 +32,9 @@ | |
| "gh-actions-build": "./.github/scripts/buildActions.sh", | ||
| "gh-actions-validate": "./.github/scripts/validateActionsAndWorkflows.sh", | ||
| "analyze-packages": "ANALYZE_BUNDLE=true webpack --config config/webpack/webpack.common.js --env.envFile=.env.production", | ||
| "check-metro-bundler-port": "node config/checkMetroBundlerPort.js" | ||
| "check-metro-bundler-port": "node config/checkMetroBundlerPort.js", | ||
| "symbolicate:android": "npx metro-symbolicate android/app/build/generated/sourcemaps/react/release/index.android.bundle.map", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are these scripts used by react native automatically?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I'm not sure what do you mean - how would they be used automatically by react-native? I've outlined sample usage in the "Details" section. Something like this:
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Awesome, thanks for the explanation. Sounds like a good plan |
||
| "symbolicate:ios": "npx metro-symbolicate main.jsbundle.map" | ||
| }, | ||
| "dependencies": { | ||
| "@formatjs/intl-getcanonicallocales": "^1.5.8", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just noting here that even though we normally use SHAs for community actions instead of
vXtags, I think it might be fine to make exceptions for GitHub-maintained actions in theactions/org.What do you think @AndrewGable ?