https://github.com/autifyhq/actions-mobile-build-upload
Upload a build file to Autify for Mobile
https://github.com/autifyhq/actions-mobile-build-upload
actions
Last synced: 8 months ago
JSON representation
Upload a build file to Autify for Mobile
- Host: GitHub
- URL: https://github.com/autifyhq/actions-mobile-build-upload
- Owner: autifyhq
- License: mit
- Created: 2022-08-30T01:24:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-09-08T23:46:18.000Z (10 months ago)
- Last Synced: 2025-10-05T00:04:19.743Z (9 months ago)
- Topics: actions
- Language: Shell
- Homepage: https://help.autify.com/mobile/docs/github-actions-integration
- Size: 17.6 KB
- Stars: 3
- Watchers: 9
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Upload build to Autify for Mobile
Upload a build file to Autify for Mobile.
See our official documentation to get started: https://help.autify.com/mobile/docs/github-actions-integration
## Usage
### Upload iOS build file to Autify for Mobile
```yaml
- uses: autifyhq/actions-mobile-build-upload@v2
with:
access-token: ${{ secrets.AUTIFY_MOBILE_ACCESS_TOKEN }}
workspace-id: AAA
build-path: /path/to/your-app.app
```
### Upload Android build file to Autify for Mobile
```yaml
- uses: autifyhq/actions-mobile-build-upload@v2
with:
access-token: ${{ secrets.AUTIFY_MOBILE_ACCESS_TOKEN }}
workspace-id: AAA
build-path: /path/to/your-app.apk
```
## Options
```yaml
access-token:
required: true
description: "Access token of Autify for Mobile."
workspace-id:
required: true
description: "Workspace ID to upload the build file."
build-path:
required: true
description: "File path to the iOS app (*.app) or Android app (*.apk)."
autify-path:
required: false
default: "autify"
description: "A path to `autify` which will be used to invoke Autify CLI internally. Default is searching from PATH."
autify-cli-installer-url:
required: false
default: "https://autify-cli-assets.s3.amazonaws.com/autify-cli/channels/stable/install-cicd.bash"
description: "Autify CLI installer URL"
```
## Outputs
```yaml
exit-code:
description: "Exit code of autify-cli. 0 means succeeded."
log:
description: "Log of stdout and stderr."
build-id:
description: "Returned build id in the workspace."
```
## Migrations
### v2 from v1
Most of the case, v2 is compatible with v1 inputs. Please try to migrate to v2 because v1 is no more maintained.