Skip to content

Commit

Permalink
ci: remove hard-coded variables
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUnderScorer committed Apr 17, 2024
1 parent b85b331 commit 216ddbd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
FPJS_CI_DOMAIN: '${{secrets.FPJS_CI_DOMAIN}}'
run: yarn ts-node scripts/createProperty.ts
- name: Build Patch Body
run: yarn build --type patchBody --proxy-secret secret --integration-path worker --agent-path pxdownload --result-path pxresult --cdn-url ${{secrets.MOCK_FPCDN}} --ingress-url ${{secrets.MOCK_FPCDN}}
run: pnpm build --type patchBody --proxy-secret secret --integration-path ${{secrets.INTEGRATION_PATH}} --agent-path ${{secrets.AGENT_PATH}} --result-path ${{secrets.RESULT_PATH}} --cdn-url ${{secrets.MOCK_FPCDN}} --ingress-url ${{secrets.MOCK_FPCDN}}
- name: Deploy Akamai Rules
id: deploy-rules
env:
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
FPJS_CI_DOMAIN: '${{secrets.FPJS_CI_DOMAIN}}'
run: pnpm ts-node scripts/createProperty.ts
- name: Build Patch Body
run: pnpm build --type patchBody --proxy-secret ${{secrets.FPJS_PROXY_SECRET}} --integration-path worker --agent-path pxdownload --result-path pxresult
run: pnpm build --type patchBody --proxy-secret ${{secrets.FPJS_PROXY_SECRET}} --integration-path ${{secrets.INTEGRATION_PATH}} --agent-path ${{secrets.AGENT_PATH}} --result-path ${{secrets.RESULT_PATH}}
- name: Deploy Akamai Rules
id: deploy-rules
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2eForPR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
TEST_DOMAIN: 'https://${{steps.extract-branch.outputs.SUBDOMAIN}}.${{secrets.FPJS_CI_DOMAIN}}'
TEST_RESULT_DOMAIN: ${{secrets.TEST_RESULT_DOMAIN}}
TEST_RESULT_PATH: ${{secrets.TEST_RESULT_PATH}}
INTEGRATION_PATH: worker
RESULT_PATH: pxresult
AGENT_PATH: pxdownload
INTEGRATION_PATH: ${{secrets.INTEGRATION_PATH}}
RESULT_PATH: ${{secrets.RESULT_PATH}}
AGENT_PATH: ${{secrets.AGENT_PATH}}
FPJS_API_KEY: ${{secrets.FPJS_API_KEY}}

0 comments on commit 216ddbd

Please sign in to comment.