diff --git a/.github/actions/custom-actions/action.yml b/.github/actions/custom-actions/action.yml index 14668896..d2b302d5 100644 --- a/.github/actions/custom-actions/action.yml +++ b/.github/actions/custom-actions/action.yml @@ -82,3 +82,6 @@ runs: - name: Zambia Production release custom action if: inputs.helpline-name == format('ZM_PROD') uses: ./.github/actions/custom-actions/zambia_production_custom + - name: E2E Development release custom action + if: inputs.helpline-name == format('E2E_DEV') + uses: ./.github/actions/custom-actions/e2e_development_custom diff --git a/.github/actions/custom-actions/e2e_development_custom/action.yml b/.github/actions/custom-actions/e2e_development_custom/action.yml index 7e9c75a8..d91ba812 100644 --- a/.github/actions/custom-actions/e2e_development_custom/action.yml +++ b/.github/actions/custom-actions/e2e_development_custom/action.yml @@ -30,9 +30,9 @@ runs: env_variable_name: "HELPLINE_CODE" # Append environment variables - name: Add HELPLINE_CODE - # run: echo "HELPLINE_CODE=${{ env.HELPLINE_CODE }}" >> .env + run: echo "HELPLINE_CODE=${{ env.HELPLINE_CODE }}" >> .env - run: | - echo "Setting helpline-code for e2e" - echo "HELPLINE_CODE=$HELPLINE_CODE" >> .env + # run: | + # echo "Setting helpline-code for e2e" + # echo "HELPLINE_CODE=$HELPLINE_CODE" >> .env shell: bash \ No newline at end of file