Skip to content

Commit

Permalink
Changing compose_profile to bip
Browse files Browse the repository at this point in the history
  • Loading branch information
agile-josiah committed Nov 3, 2023
1 parent 5555d63 commit 155b157
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/svc-bip-api-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
branches: [josiah/bip-integration-test]

env:
COMPOSE_PROFILES: 'svc'
COMPOSE_PROFILES: 'bip'
VRO_DEV_SECRETS_FOLDER: "${{ github.workspace }}/.cache/abd-vro-dev-secrets"

jobs:
Expand Down Expand Up @@ -44,6 +44,14 @@ jobs:

- name: 'Start the containers'
run: |
# create basic auth token for RabbitMQ and export to github environment
BASIC_AUTH=$(echo "${RABBITMQ_USERNAME}:${RABBITMQ_PASSWORD}" | base64)
{
echo "RABBITMQ_USERNAME=${RABBITMQ_USERNAME}"
echo "RABBITMQ_PASSWORD=${RABBITMQ_PASSWORD}"
echo "RABBITMQ_BASIC_AUTH=${BASIC_AUTH}"
} >> "$GITHUB_ENV"
source scripts/setenv.sh
export -p | sed 's/declare -x //'
Expand Down

0 comments on commit 155b157

Please sign in to comment.