Skip to content

Commit

Permalink
commit src
Browse files Browse the repository at this point in the history
  • Loading branch information
danh-ld committed Sep 10, 2023
1 parent 93be555 commit bce52bc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Print instruments
run: |
xcrun simctl list devices
# A name for your step to display on GitHub.
# - name: "List all simulators"
Expand All @@ -59,7 +59,11 @@ jobs:
# )

# xcrun simctl boot "${UDID:?No Simulator with this name found}"
run: xcrun simctl boot 66A6B2F3-3C93-4F80-9B07-F5AA621210E7
# run: xcrun simctl boot 66A6B2F3-3C93-4F80-9B07-F5AA621210E7
run: |
UUID=$(xcrun simctl list devices | grep -o "iPhone 8 ([A-Z0-9-]\+)" | awk -F '[()]' '{print $2}')
xcrun simctl boot $UUID
# The branch or tag ref that triggered the workflow will be checked out.
# https://github.com/actions/checkout
Expand Down

0 comments on commit bce52bc

Please sign in to comment.