Skip to content

Commit

Permalink
use secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
jyu115 committed Dec 6, 2023
1 parent 19f8033 commit 2d39cd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ios-browserstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
with:
url: "https://api-cloud.browserstack.com/app-automate/xcuitest/v2/app"
method: "POST"
username: "justinyu_cIqvyB"
password: "TszLVeLKEjzwXpVUSB48"
username: ${{ secrets.BROWSERSTACK_USERNAME }}
password: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
files: '{ "file": ${{ github.workspace }}/build-swift-sample-app/swift-sample-app.ipa", "custom_id": "swift-sample-app" }'

- name: get browserstack app_url
Expand All @@ -33,8 +33,8 @@ jobs:
with:
url: "https://api-cloud.browserstack.com/app-automate/xcuitest/v2/test-suite"
method: "POST"
username: "justinyu_cIqvyB"
password: "TszLVeLKEjzwXpVUSB48"
username: ${{ secrets.BROWSERSTACK_USERNAME }}
password: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
files: '{ "file": ${{ github.workspace }}/build-swift-sample-app/swift-sample-app-ui-test.zip", "custom_id": "swift-sample-app-ui-test" }'

- name: get browserstack test_suite_url
Expand Down

0 comments on commit 2d39cd4

Please sign in to comment.