Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apple-actions/download-provisioning-profiles
Github Action for downloading provisioning profiles from Apple AppStore Connect
https://github.com/apple-actions/download-provisioning-profiles
actions apple github-actions
Last synced: about 1 month ago
JSON representation
Github Action for downloading provisioning profiles from Apple AppStore Connect
- Host: GitHub
- URL: https://github.com/apple-actions/download-provisioning-profiles
- Owner: Apple-Actions
- License: mit
- Created: 2020-01-28T10:23:21.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-10T08:07:26.000Z (8 months ago)
- Last Synced: 2024-11-11T14:46:53.672Z (about 1 month ago)
- Topics: actions, apple, github-actions
- Language: TypeScript
- Size: 1.09 MB
- Stars: 74
- Watchers: 12
- Forks: 37
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Action to download and install Provisioning Profiles
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](LICENSE)
[![PRs welcome!](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)## Usage:
```yaml
jobs:
build:
runs-on: macOS-latest
steps:
- name: 'Download Provisioning Profiles'
id: provisioning
uses: apple-actions/download-provisioning-profiles@v1
with:
bundle-id: 'com.example.App'
profile-type: 'IOS_APP_STORE'
issuer-id: ${{ secrets.APPSTORE_ISSUER_ID }}
api-key-id: ${{ secrets.APPSTORE_KEY_ID }}
api-private-key: ${{ secrets.APPSTORE_PRIVATE_KEY }}
- name: 'Another example step'
run: echo ${{ steps.provisioning.outputs.profiles }}
```## Additional Arguments
See [action.yml](action.yml) for more details.
## Outputs
The action outputs an array of JSON objects to the action output named `profiles`. You can access and manipulate this data using [workflow expressions](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions#steps-context).
## Contributing
We welcome your interest in contributing to this project. Please read the [Contribution Guidelines](CONTRIBUTING.md) for more guidance.
## License
Any contributions made under this project will be governed by the [MIT License](LICENSE).