Skip to content

Commit f852f6f

Browse files
committed
update: pass app from env variable
1 parent 09f069d commit f852f6f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/sanity-workflow.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ jobs:
6363
- name: Run local android tests
6464
run: |
6565
cd android
66-
dotnet test --filter "Category=sample-local-test" --browserstack.app "./LocalSample.apk"
66+
dotnet test --filter "Category=sample-local-test"
67+
env:
68+
BROWSERSTACK_APP: ./LocalSample.apk
6769

6870
- name: Run sample ios tests
6971
run: |
@@ -73,7 +75,9 @@ jobs:
7375
- name: Run local ios tests
7476
run: |
7577
cd ios
76-
dotnet test --filter "Category=sample-local-test" --browserstack.app "./LocalSample.ipa"
78+
dotnet test --filter "Category=sample-local-test"
79+
env:
80+
BROWSERSTACK_APP: ./LocalSample.ipa
7781

7882
- if: always()
7983
uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975

0 commit comments

Comments
 (0)