Skip to content

Commit 5fb8811

Browse files
committed
Improve step output for debugging
1 parent ee02a8b commit 5fb8811

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/commands/authenticate_with_oidc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@ steps:
1515
then
1616
echo "export CLOUDSMITH_ORGANISATION=\"financial-times\"" >> "$BASH_ENV"
1717
fi
18+
echo "CLOUDSMITH_ORGANISATION=$CLOUDSMITH_ORGANISATION"
1819
- run:
1920
name: Configure Cloudsmith service
2021
command: |
2122
echo "export CLOUDSMITH_SERVICE_IDENTIFIER=\"<<parameters.service_identifier>>\"" >> "$BASH_ENV"
23+
echo "CLOUDSMITH_SERVICE_IDENTIFIER=$CLOUDSMITH_SERVICE_IDENTIFIER"
2224
- run:
2325
name: Authenticate with OIDC
2426
command: <<include(scripts/authenticate_with_oidc.sh)>>

src/commands/set_env_vars_for_pip.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ steps:
1717
name: Configure Cloudsmith repository
1818
command: |
1919
echo "export CLOUDSMITH_REPOSITORY_IDENTIFIER=\"<<parameters.repository_identifier>>\"" >> $BASH_ENV
20+
echo "CLOUDSMITH_REPOSITORY_IDENTIFIER=$CLOUDSMITH_REPOSITORY_IDENTIFIER"
2021
- run:
2122
name: Set environment variables for pip
2223
command: <<include(scripts/set_env_vars_for_pip.sh)>>

src/scripts/configure_cloudsmith_domains.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
if [ -z "$CLOUDSMITH_DOWNLOADS_DOMAIN" ]
44
then
55
echo "export CLOUDSMITH_DOWNLOADS_DOMAIN=\"packages.ft.com\"" >> "$BASH_ENV"
6+
echo "CLOUDSMITH_DOWNLOADS_DOMAIN=$CLOUDSMITH_DOWNLOADS_DOMAIN"
67
fi
78

0 commit comments

Comments
 (0)