mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e4b5d3eec9
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/35015 React Native releases are cut every few months. Without testing, the workflow is prone to breakage. Dry-run the release workflow on every commit in order to surface any issues as they are introduced instead of at release time. Fixed issues that surfaced during testing of this workflow: - Upload both Hermes tarballs Changelog: [internal] Reviewed By: mdvacca Differential Revision: D40483764 fbshipit-source-id: 5ca6bd4dcdfd64c24882ffb202edbfd701efd462
13 lines
486 B
Bash
Executable File
13 lines
486 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
GITHUB_OWNER=${CIRCLE_PROJECT_USERNAME:-facebook} \
|
|
GITHUB_REPO=${CIRCLE_PROJECT_REPONAME:-react-native} \
|
|
GITHUB_PR_NUMBER="${CIRCLE_PR_NUMBER:-${CIRCLE_PULL_REQUEST##*/}}" \
|
|
GITHUB_REF=${CIRCLE_BRANCH} \
|
|
GITHUB_SHA=${CIRCLE_SHA1} \
|
|
exec node packages/react-native-bots/post-artifacts-link.js
|