https://github.com/sinoru/actions-setup-xcode
Set up your GitHub Actions workflow with a specific version of Xcode
https://github.com/sinoru/actions-setup-xcode
apple ci continuous-deployment continuous-integration github-actions ios macos tvos watchos xcode
Last synced: 2 months ago
JSON representation
Set up your GitHub Actions workflow with a specific version of Xcode
- Host: GitHub
- URL: https://github.com/sinoru/actions-setup-xcode
- Owner: sinoru
- License: mit
- Created: 2019-11-23T07:40:20.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-02-27T23:56:47.000Z (about 3 years ago)
- Last Synced: 2025-09-29T01:27:33.085Z (6 months ago)
- Topics: apple, ci, continuous-deployment, continuous-integration, github-actions, ios, macos, tvos, watchos, xcode
- Language: JavaScript
- Homepage:
- Size: 18.9 MB
- Stars: 21
- Watchers: 2
- Forks: 5
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# actions-setup-xcode
[](https://github.com/sinoru/actions-setup-xcode/actions/workflows/test.yml)
[](https://github.com/sinoru/actions-setup-xcode/actions/workflows/test.yml)
This action sets up a Xcode environment for use in actions by:
- optionally downloading a version of Xcode from Apple Developer. The action will fail if no matching versions are found in local and Apple ID is not available.
- registering problem matchers for error output
# Usage
See [action.yml](action.yml)
Basic:
```yaml
steps:
- uses: actions/checkout@master
- uses: sinoru/actions-setup-xcode@v2
with:
xcode-version: '13.4' # Exact version of a Xcode version to use
apple-id: 'bot@sinoru.io' # Apple ID to download from Apple Developer when Xcode not available in local
apple-id-password: ${{ secrets.APPLE_ID_PASSWORD }}
- run: fastlane scan
```
# License
The scripts and documentation in this project are released under the [MIT License](LICENSE)
# Contributions
Contributions are welcome! See [Contributor's Guide](CONTRIBUTING.md)