Skip to content

Commit

Permalink
ci: use correct domain
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUnderScorer committed Dec 5, 2023
1 parent 5261569 commit cd120c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/e2eForRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ jobs:
run: yarn install

- name: Output domain
run: echo https://${{steps.get-subdomain.outputs.SUBDOMAIN}}
run: echo https://${{needs.get-subdomain.outputs.SUBDOMAIN}}

- name: Wait for property
run: yarn ts-node scripts/waitForProperty.ts
env:
URL: 'https://${{steps.get-subdomain.outputs.SUBDOMAIN}}.${{secrets.FPJS_CI_DOMAIN}}/${{secrets.INTEGRATION_PATH}}/status'
URL: 'https://${{needs.get-subdomain.outputs.SUBDOMAIN}}.${{secrets.FPJS_CI_DOMAIN}}/${{secrets.INTEGRATION_PATH}}/status'

test-e2e:
runs-on: ubuntu-20.04
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Run test
run: yarn test:e2e
env:
TEST_DOMAIN: 'https://${{steps.get-subdomain.outputs.SUBDOMAIN}}.${{secrets.FPJS_CI_DOMAIN}}'
TEST_DOMAIN: 'https://${{needs.get-subdomain.outputs.SUBDOMAIN}}.${{secrets.FPJS_CI_DOMAIN}}'
TEST_RESULT_DOMAIN: ${{secrets.TEST_RESULT_DOMAIN}}
TEST_RESULT_PATH: ${{secrets.TEST_RESULT_PATH}}
INTEGRATION_PATH: ${{secrets.INTEGRATION_PATH}}
Expand Down

0 comments on commit cd120c7

Please sign in to comment.