From 6f3436b7679d90d46c7f9eea6a4aab15341da9ee Mon Sep 17 00:00:00 2001 From: Anna Wen <54281166+annawen1@users.noreply.github.com> Date: Tue, 19 Jan 2021 16:03:10 -0500 Subject: [PATCH] chore(github-workflow): add profile host env var to various testing envs (#4923) ### Related Ticket(s) Change profile endpoint on Carbon Masthead for signed in state #4701 ### Description Add the profile host env var to various testing envs previously added the variable to only react testing envs deploy-canary: - react-experimental - react-rtl - web-components - web-components-rtl - web-components-experimental - web-components-react - services deploy-staging: - web-components --- .github/workflows/deploy-canary.yml | 7 +++++++ .github/workflows/deploy-staging.yml | 1 + 2 files changed, 8 insertions(+) diff --git a/.github/workflows/deploy-canary.yml b/.github/workflows/deploy-canary.yml index 39f94b3693d..98992cb498b 100644 --- a/.github/workflows/deploy-canary.yml +++ b/.github/workflows/deploy-canary.yml @@ -66,6 +66,7 @@ jobs: env: KALTURA_PARTNER_ID: ${{ secrets.KALTURA_PARTNER_ID }} KALTURA_UICONF_ID: ${{ secrets.KALTURA_UICONF_ID }} + PROFILE_HOST: ${{ secrets.PROFILE_HOST }} DDS_FLAGS_ALL: true - name: Building @carbon/ibmdotcom-react (experimental) storybook run: yarn build-storybook @@ -105,6 +106,7 @@ jobs: env: KALTURA_PARTNER_ID: ${{ secrets.KALTURA_PARTNER_ID }} KALTURA_UICONF_ID: ${{ secrets.KALTURA_UICONF_ID }} + PROFILE_HOST: ${{ secrets.PROFILE_HOST }} REACT_STORYBOOK_USE_RTL: true - name: Building @carbon/ibmdotcom-react (RTL) storybook run: yarn build-storybook @@ -144,6 +146,7 @@ jobs: env: KALTURA_PARTNER_ID: ${{ secrets.KALTURA_PARTNER_ID }} KALTURA_UICONF_ID: ${{ secrets.KALTURA_UICONF_ID }} + PROFILE_HOST: ${{ secrets.PROFILE_HOST }} - name: Building @carbon/ibmdotcom-web-components storybook run: yarn build-storybook working-directory: packages/web-components @@ -182,6 +185,7 @@ jobs: env: KALTURA_PARTNER_ID: ${{ secrets.KALTURA_PARTNER_ID }} KALTURA_UICONF_ID: ${{ secrets.KALTURA_UICONF_ID }} + PROFILE_HOST: ${{ secrets.PROFILE_HOST }} STORYBOOK_IBMDOTCOM_WEB_COMPONENTS_USE_RTL: true - name: Building @carbon/ibmdotcom-web-components RTL storybook run: yarn build-storybook @@ -221,6 +225,7 @@ jobs: env: KALTURA_PARTNER_ID: ${{ secrets.KALTURA_PARTNER_ID }} KALTURA_UICONF_ID: ${{ secrets.KALTURA_UICONF_ID }} + PROFILE_HOST: ${{ secrets.PROFILE_HOST }} DDS_FLAGS_ALL: true - name: Building @carbon/ibmdotcom-web-components experimental storybook run: yarn build-storybook @@ -260,6 +265,7 @@ jobs: env: KALTURA_PARTNER_ID: ${{ secrets.KALTURA_PARTNER_ID }} KALTURA_UICONF_ID: ${{ secrets.KALTURA_UICONF_ID }} + PROFILE_HOST: ${{ secrets.PROFILE_HOST }} - name: Building @carbon/ibmdotcom-web-components react wrapper storybook run: yarn build-storybook:react working-directory: packages/web-components @@ -298,6 +304,7 @@ jobs: env: KALTURA_PARTNER_ID: ${{ secrets.KALTURA_PARTNER_ID }} KALTURA_UICONF_ID: ${{ secrets.KALTURA_UICONF_ID }} + PROFILE_HOST: ${{ secrets.PROFILE_HOST }} - name: Building @carbon/ibmdotcom-services JSDocs run: yarn jsdoc working-directory: packages/services diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index 49ff9a0fdb0..e13e7af8fe7 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -66,6 +66,7 @@ jobs: env: KALTURA_PARTNER_ID: ${{ secrets.KALTURA_PARTNER_ID }} KALTURA_UICONF_ID: ${{ secrets.KALTURA_UICONF_ID }} + PROFILE_HOST: ${{ secrets.PROFILE_HOST }} - name: Building @carbon/ibmdotcom-web-components (staging) storybook run: yarn build-storybook working-directory: packages/web-components