Skip to content

Commit

Permalink
Run Platform Script should also copy this file over. (#28644)
Browse files Browse the repository at this point in the history
The run platform script was not updated to account for new config files we need after updating Temporal. This PR adjusts the script so we do so.
  • Loading branch information
davinchia authored Jul 24, 2023
1 parent e530349 commit 8a62add
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ dd-java-agent.jar
/.env
/.env.dev
/flags.yml
/temporal/dynamicconfig/development.yaml

# Ignore generated credentials from google-github-actions/auth
gha-creds-*.json
3 changes: 2 additions & 1 deletion run-ab-platform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ docker_compose_debug_yaml="docker-compose.debug.yaml"
dot_env=".env"
dot_env_dev=".env.dev"
flags="flags.yml"
temporal_yaml="temporal/dynamicconfig/development.yaml"
# any string is an array to POSIX shell. Space seperates values
all_files="$docker_compose_yaml $docker_compose_debug_yaml $dot_env $dot_env_dev $flags"
all_files="$docker_compose_yaml $docker_compose_debug_yaml $dot_env $dot_env_dev $flags $temporal_yaml"

base_github_url="https://raw.githubusercontent.com/airbytehq/airbyte-platform/v$VERSION/"

Expand Down

0 comments on commit 8a62add

Please sign in to comment.