Skip to content

Commit

Permalink
chore: fix env on ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Orkuncakilkaya committed Oct 31, 2023
1 parent d0bf36c commit 2bcc533
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,8 @@ jobs:
- name: Check Akamai Property can be created
id: check-akamai-property
continue-on-error: true
run: yarn ts-node scripts/checkPropertyCanBeCreated.ts
env:
AK_CONTRACT_ID: ${{secrets.AK_CONTRACT_ID}}
AK_GROUP_ID: ${{secrets.AK_GROUP_ID}}
BRANCH_NAME: ${{steps.extract-branch.outputs.BRANCH_NAME}}
run: AK_CONTRACT_ID=${{secrets.AK_CONTRACT_ID}} AK_GROUP_ID=${{secrets.AK_GROUP_ID}} BRANCH_NAME=${{steps.extract-branch.outputs.BRANCH_NAME}} yarn ts-node scripts/checkPropertyCanBeCreated.ts
- name: Create Akamai Property
if: steps.check-akamai-property.outcome == 'success'
id: create-akamai-property
run: yarn ts-node scripts/createProperty.ts
env:
AK_CONTRACT_ID: ${{secrets.AK_CONTRACT_ID}}
AK_GROUP_ID: ${{secrets.AK_GROUP_ID}}
BRANCH_NAME: ${{steps.extract-branch.outputs.BRANCH_NAME}}
run: AK_CONTRACT_ID=${{secrets.AK_CONTRACT_ID}} AK_GROUP_ID=${{secrets.AK_GROUP_ID}} BRANCH_NAME=${{steps.extract-branch.outputs.BRANCH_NAME}} yarn ts-node scripts/createProperty.ts

0 comments on commit 2bcc533

Please sign in to comment.