Skip to content

Commit 9e69de8

Browse files
committed
Renamed repository to setup-xcode-simulator
1 parent 927d174 commit 9e69de8

6 files changed

Lines changed: 17 additions & 17 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-setup/discussions
4+
url: https://github.com/orchetect/setup-xcode-simulator/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-setup/discussions
7+
url: https://github.com/orchetect/setup-xcode-simulator/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-setup
1+
# setup-xcode-simulator
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-setup@main
73+
- uses: orchetect/setup-xcode-simulator@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-setup@main
86+
- uses: orchetect/setup-xcode-simulator@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-setup@main
100+
- uses: orchetect/setup-xcode-simulator@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: sim-setup
130-
uses: orchetect/xcode-simulator-setup@main
130+
uses: orchetect/setup-xcode-simulator@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: sim-setup
182-
uses: orchetect/xcode-simulator-setup@main
182+
uses: orchetect/setup-xcode-simulator@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-setup/blob/main/LICENSE) for details.
223+
Licensed under the MIT license. See [LICENSE](https://github.com/orchetect/setup-xcode-simulator/blob/main/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-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).
229+
- Questions and feature ideas can be posted to [Discussions](https://github.com/orchetect/setup-xcode-simulator/discussions).
230+
- If an issue is a verifiable bug with reproducible steps it may be posted in [Issues](https://github.com/orchetect/setup-xcode-simulator/issues).
231231

232232
## Contributions
233233

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

scripts/download.sh

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

33
# download.sh
4-
# xcode-simulator-setup • https://github.com/orchetect/xcode-simulator-setup
4+
# setup-xcode-simulator • https://github.com/orchetect/setup-xcode-simulator
55
# © 2026 Steffan Andrews • Licensed under MIT License
66

7-
# xcode-simulator-setup
7+
# setup-xcode-simulator
88

99
# Workaround for Xcode/GitHub runner issues finding simulators.
1010
# see https://github.com/actions/runner-images/issues/12758#issuecomment-3206748945

scripts/id.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# id.sh
4-
# xcode-simulator-setup • https://github.com/orchetect/xcode-simulator-setup
4+
# setup-xcode-simulator • https://github.com/orchetect/setup-xcode-simulator
55
# © 2026 Steffan Andrews • Licensed under MIT License
66

77
# Note that GitHub Actions DO NOT USE THE ZSH SHELL, YOU MUST USE BASH (still as of Mar 2026).

scripts/parse-inputs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# parse-inputs.sh
4-
# xcode-simulator-setup • https://github.com/orchetect/xcode-simulator-setup
4+
# setup-xcode-simulator • https://github.com/orchetect/setup-xcode-simulator
55
# © 2026 Steffan Andrews • Licensed under MIT License
66

77
# Inputs used:

scripts/refresh.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# refresh.sh
4-
# xcode-simulator-setup • https://github.com/orchetect/xcode-simulator-setup
4+
# setup-xcode-simulator • https://github.com/orchetect/setup-xcode-simulator
55
# © 2026 Steffan Andrews • Licensed under MIT License
66

77
# Workaround for Xcode/GitHub runner issues finding simulators.

0 commit comments

Comments
 (0)