Skip to content

Commit b73db4f

Browse files
committed
Renamed repository to xcode-simulator-setup
1 parent fb77c28 commit b73db4f

7 files changed

Lines changed: 31 additions & 13 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Feature request
4-
url: https://github.com/orchetect/xcode-simulator/discussions
4+
url: https://github.com/orchetect/xcode-simulator-setup/discussions
55
about: Suggest new features or improvements.
66
- name: I need help setting up or troubleshooting
7-
url: https://github.com/orchetect/xcode-simulator/discussions
7+
url: https://github.com/orchetect/xcode-simulator-setup/discussions
88
about: Questions not answered in the documentation, discussions forum, or example projects.

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# xcode-simulator
1+
# xcode-simulator-setup
22

33
This action is intended to dynamically find the best available pre-installed Xcode device simulator for macOS images in GitHub Actions.
44

@@ -70,7 +70,7 @@ jobs:
7070
build:
7171
runs-on: macos-latest
7272
steps:
73-
- uses: orchetect/xcode-simulator@main
73+
- uses: orchetect/xcode-simulator-setup@main
7474
with:
7575
scheme: MySchemeName
7676
target: iOS
@@ -83,7 +83,7 @@ jobs:
8383
build:
8484
runs-on: macos-latest
8585
steps:
86-
- uses: orchetect/xcode-simulator@main
86+
- uses: orchetect/xcode-simulator-setup@main
8787
with:
8888
workspace-path: MyProject/MyProject.xcodeproj/project.xcworkspace
8989
scheme: MySchemeName
@@ -97,7 +97,7 @@ jobs:
9797
build:
9898
runs-on: macos-latest
9999
steps:
100-
- uses: orchetect/xcode-simulator@main
100+
- uses: orchetect/xcode-simulator-setup@main
101101
with:
102102
scheme: MySchemeName
103103
target: iphone-pro-max
@@ -127,7 +127,7 @@ jobs:
127127
- uses: actions/checkout@main
128128
- name: Prepare Device Simulator
129129
id: prep-sim
130-
uses: orchetect/xcode-simulator@main
130+
uses: orchetect/xcode-simulator-setup@main
131131
with:
132132
refresh: true
133133
download: true
@@ -179,7 +179,7 @@ jobs:
179179
- uses: actions/checkout@main
180180
- name: Prepare Device Simulator
181181
id: prep-sim
182-
uses: orchetect/xcode-simulator@main
182+
uses: orchetect/xcode-simulator-setup@main
183183
with:
184184
refresh: true
185185
download: true
@@ -220,15 +220,15 @@ Coded by a bunch of 🐹 hamsters in a trenchcoat that calls itself [@orchetect]
220220

221221
## License
222222

223-
Licensed under the MIT license. See [LICENSE](https://github.com/orchetect/xcode-simulator/blob/master/LICENSE) for details.
223+
Licensed under the MIT license. See [LICENSE](https://github.com/orchetect/xcode-simulator-setup/blob/master/LICENSE) for details.
224224

225225
## Community & Support
226226

227227
Please do not email maintainers for technical support. Several options are available for issues and questions:
228228

229-
- Questions and feature ideas can be posted to [Discussions](https://github.com/orchetect/xcode-simulator/discussions).
230-
- If an issue is a verifiable bug with reproducible steps it may be posted in [Issues](https://github.com/orchetect/xcode-simulator/issues).
229+
- Questions and feature ideas can be posted to [Discussions](https://github.com/orchetect/xcode-simulator-setup/discussions).
230+
- If an issue is a verifiable bug with reproducible steps it may be posted in [Issues](https://github.com/orchetect/xcode-simulator-setup/issues).
231231

232232
## Contributions
233233

234-
Contributions are welcome. Posting in [Discussions](https://github.com/orchetect/xcode-simulator/discussions) first prior to new submitting PRs for features or modifications is encouraged.
234+
Contributions are welcome. Posting in [Discussions](https://github.com/orchetect/xcode-simulator-setup/discussions) first prior to new submitting PRs for features or modifications is encouraged.

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Xcode Simulator Selector'
1+
name: 'Xcode Simulator Setup'
22
author: 'Steffan Andrews'
33
description: 'Dynamically find the best available Xcode device simulator.'
44
inputs:

scripts/download.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
#!/bin/sh
22

3+
# download.sh
4+
# xcode-simulator-setup • https://github.com/orchetect/xcode-simulator-setup
5+
# © 2026 Steffan Andrews • Licensed under MIT License
6+
7+
# xcode-simulator-setup
8+
39
# Workaround for Xcode/GitHub runner issues finding simulators.
410
# see https://github.com/actions/runner-images/issues/12758#issuecomment-3206748945
511

scripts/id.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/bin/sh
22

3+
# id.sh
4+
# xcode-simulator-setup • https://github.com/orchetect/xcode-simulator-setup
5+
# © 2026 Steffan Andrews • Licensed under MIT License
6+
37
# Note that GitHub Actions DO NOT USE THE ZSH SHELL, YOU MUST USE BASH (still as of Mar 2026).
48
# This script is confirmed to work on both bash and zsh.
59
#

scripts/parse-inputs.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/bin/sh
22

3+
# parse-inputs.sh
4+
# xcode-simulator-setup • https://github.com/orchetect/xcode-simulator-setup
5+
# © 2026 Steffan Andrews • Licensed under MIT License
6+
37
# Inputs used:
48
# - INPUT_WORKSPACEPATH optional
59
# - INPUT_SCHEME required

scripts/refresh.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/bin/sh
22

3+
# refresh.sh
4+
# xcode-simulator-setup • https://github.com/orchetect/xcode-simulator-setup
5+
# © 2026 Steffan Andrews • Licensed under MIT License
6+
37
# Workaround for Xcode/GitHub runner issues finding simulators.
48
# see https://github.com/actions/runner-images/issues/12758#issuecomment-3206748945
59

0 commit comments

Comments
 (0)