Skip to content
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

Fix for react-native workflow duplicate Steps #234

Merged
merged 9 commits into from
Feb 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions _tests/integration/manual_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ var customConfigResultYML = fmt.Sprintf(`options:
env_key: PROJECT_LOCATION
type: user_input
value_map:
"":
android:
title: Module
summary: Modules provide a container for your Android project's source
code, resource files, and app level settings, such as the module-level
Expand All @@ -512,14 +512,14 @@ var customConfigResultYML = fmt.Sprintf(`options:
env_key: MODULE
type: user_input
value_map:
"":
app:
title: Variant
summary: Your Android build variant. You can add variants at any time,
as well as further configure your existing variants later.
env_key: VARIANT
type: user_input_optional
value_map:
"":
Debug:
title: Project or Workspace path
summary: The location of your Xcode project or Xcode workspace
files, stored as an Environment Variable. In your Workflows,
Expand Down Expand Up @@ -1239,6 +1239,8 @@ configs:
- android-build@%s:
inputs:
- project_location: $PROJECT_LOCATION
- module: $MODULE
- variant: $VARIANT
- xcode-archive@%s:
inputs:
- project_path: $BITRISE_PROJECT_PATH
Expand Down
Loading