From 2aa8d23e60ac40635313d14bb0d428d912ac8991 Mon Sep 17 00:00:00 2001 From: ignaciosantise Date: Wed, 27 Sep 2023 12:37:34 -0300 Subject: [PATCH 1/4] chore: updated maestro flows --- .github/workflows/cli-dapp.yaml | 3 ++- .github/workflows/cli-wallet.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cli-dapp.yaml b/.github/workflows/cli-dapp.yaml index 2988b231..b303d85f 100644 --- a/.github/workflows/cli-dapp.yaml +++ b/.github/workflows/cli-dapp.yaml @@ -19,7 +19,8 @@ jobs: java-version: 11 distribution: 'temurin' cache: gradle - - run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}" >> .env + - run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}\nENV_SENTRY_DSN=${{ secrets.WCM_SENTRY_DSN }}" >> .env + - run: touch ../android/sentry.properties && echo ${{ secrets.WCM_SENTRY_FILE }} >> ../android/sentry.properties - run: npm install -g yarn - run: yarn - run: yarn android:build diff --git a/.github/workflows/cli-wallet.yaml b/.github/workflows/cli-wallet.yaml index 0c3b3cf4..9713ed07 100644 --- a/.github/workflows/cli-wallet.yaml +++ b/.github/workflows/cli-wallet.yaml @@ -19,7 +19,8 @@ jobs: java-version: 11 distribution: 'temurin' cache: gradle - - run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}" >> .env + - run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}\nENV_SENTRY_DSN=${{ secrets.W3W_SENTRY_DSN }}" >> .env + - run: touch ../android/sentry.properties && echo ${{ secrets.W3W_SENTRY_FILE }} >> ../android/sentry.properties - run: npm install -g yarn - run: yarn - run: yarn android:build From 0707788533a1709f15a3d9f086a8713d6d69de81 Mon Sep 17 00:00:00 2001 From: ignaciosantise Date: Wed, 27 Sep 2023 12:40:16 -0300 Subject: [PATCH 2/4] chore: fixed path --- .github/workflows/cli-dapp.yaml | 2 +- .github/workflows/cli-wallet.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cli-dapp.yaml b/.github/workflows/cli-dapp.yaml index b303d85f..137e7d68 100644 --- a/.github/workflows/cli-dapp.yaml +++ b/.github/workflows/cli-dapp.yaml @@ -20,7 +20,7 @@ jobs: distribution: 'temurin' cache: gradle - run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}\nENV_SENTRY_DSN=${{ secrets.WCM_SENTRY_DSN }}" >> .env - - run: touch ../android/sentry.properties && echo ${{ secrets.WCM_SENTRY_FILE }} >> ../android/sentry.properties + - run: touch ./android/sentry.properties && echo ${{ secrets.WCM_SENTRY_FILE }} >> ./android/sentry.properties - run: npm install -g yarn - run: yarn - run: yarn android:build diff --git a/.github/workflows/cli-wallet.yaml b/.github/workflows/cli-wallet.yaml index 9713ed07..517421ed 100644 --- a/.github/workflows/cli-wallet.yaml +++ b/.github/workflows/cli-wallet.yaml @@ -20,7 +20,7 @@ jobs: distribution: 'temurin' cache: gradle - run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}\nENV_SENTRY_DSN=${{ secrets.W3W_SENTRY_DSN }}" >> .env - - run: touch ../android/sentry.properties && echo ${{ secrets.W3W_SENTRY_FILE }} >> ../android/sentry.properties + - run: touch ./android/sentry.properties && echo ${{ secrets.W3W_SENTRY_FILE }} >> ./android/sentry.properties - run: npm install -g yarn - run: yarn - run: yarn android:build From 22e71107fa6713d0f4b9ee585b76f14a646120e1 Mon Sep 17 00:00:00 2001 From: ignaciosantise Date: Wed, 27 Sep 2023 12:43:05 -0300 Subject: [PATCH 3/4] chore: fixed maestro script --- .github/workflows/cli-dapp.yaml | 2 +- .github/workflows/cli-wallet.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cli-dapp.yaml b/.github/workflows/cli-dapp.yaml index 137e7d68..4cd489b8 100644 --- a/.github/workflows/cli-dapp.yaml +++ b/.github/workflows/cli-dapp.yaml @@ -20,7 +20,7 @@ jobs: distribution: 'temurin' cache: gradle - run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}\nENV_SENTRY_DSN=${{ secrets.WCM_SENTRY_DSN }}" >> .env - - run: touch ./android/sentry.properties && echo ${{ secrets.WCM_SENTRY_FILE }} >> ./android/sentry.properties + - run: touch ./android/sentry.properties && echo "${{ secrets.WCM_SENTRY_FILE }}" >> ./android/sentry.properties - run: npm install -g yarn - run: yarn - run: yarn android:build diff --git a/.github/workflows/cli-wallet.yaml b/.github/workflows/cli-wallet.yaml index 517421ed..753bd64f 100644 --- a/.github/workflows/cli-wallet.yaml +++ b/.github/workflows/cli-wallet.yaml @@ -20,7 +20,7 @@ jobs: distribution: 'temurin' cache: gradle - run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}\nENV_SENTRY_DSN=${{ secrets.W3W_SENTRY_DSN }}" >> .env - - run: touch ./android/sentry.properties && echo ${{ secrets.W3W_SENTRY_FILE }} >> ./android/sentry.properties + - run: touch ./android/sentry.properties && echo "${{ secrets.W3W_SENTRY_FILE }}" >> ./android/sentry.properties - run: npm install -g yarn - run: yarn - run: yarn android:build From 16168a5b356bccba0e70401dac7c36eef22c93f1 Mon Sep 17 00:00:00 2001 From: ignaciosantise Date: Wed, 27 Sep 2023 12:56:44 -0300 Subject: [PATCH 4/4] chore: modified template --- .github/workflow-templates/e2e-template.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflow-templates/e2e-template.yaml b/.github/workflow-templates/e2e-template.yaml index 3ea1ef9e..3836c0b5 100644 --- a/.github/workflow-templates/e2e-template.yaml +++ b/.github/workflow-templates/e2e-template.yaml @@ -22,7 +22,8 @@ jobs: java-version: 11 distribution: 'temurin' cache: gradle - - run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}" >> .env + - run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}\nENV_SENTRY_DSN=${{ secrets.ENV_SENTRY_DSN }}" >> .env + - run: touch ./android/sentry.properties && echo "${{ secrets.ENV_SENTRY_FILE }}" >> ./android/sentry.properties - run: npm install -g yarn - run: yarn - run: yarn android:build