Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
leanmendoza committed Oct 17, 2023
1 parent 5f1f85b commit f9d4c2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
decentraland_ecs_bucket_key: ${{ steps.publish_ecs.outputs.s3-bucket-key }}
steps:
- name: (PR) Check if it's a PR
if: ${{ env.IS_A_PR }}
if: ${{ env.IS_A_PR == 'true' }}
run: |
echo "run from a PR"
echo "from env '${{env.IS_A_PR}}'"
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:

- name: (PR) change @dcl/react-ecs dependencies versions to point to s3 url
working-directory: ./packages/@dcl/react-ecs
if: ${{ env.IS_A_PR }}
if: ${{ env.IS_A_PR == 'true' }}
run: |
node -e "\
let pkg=require('./package.json');\
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:

- name: (PR) change @dcl/sdk-commands dependencies versions to point to s3 url
working-directory: ./packages/@dcl/sdk-commands
if: ${{ env.IS_A_PR }}
if: ${{ env.IS_A_PR == 'true' }}
run: |
node -e "\
let pkg=require('./package.json');\
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:

- name: (PR) change @dcl/sdk version to s3 url
working-directory: ./packages/@dcl/sdk
if: ${{ env.IS_A_PR }}
if: ${{ env.IS_A_PR == 'true' }}
run: |
node -e "\
let pkg=require('./package.json');\
Expand Down

0 comments on commit f9d4c2a

Please sign in to comment.