Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ enterprise-grade authentication methods.
## Benefits of Using Testing Distribution

1. **Simplified Binary Distribution**.
- **Skip Traditional Stores:** Share .xcarchive .IPA, APK, AAB, Zip, files
- **Skip Traditional Stores:** Share .IPA, APK, AAB, files
directly, avoiding the need to use App Store TestFlight or Google Play
Internal Testing.
2. **Streamlined Workflow:**
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ inputs:
type: boolean
appPath:
description:
'Specify the path to your application file. For iOS, this can be a .ipa or
.xcarchive file path. For Android, specify the .apk or .appbundle file
'Specify the path to your application file. For iOS, this can be a .ipa
file path. For Android, specify the .apk or .aab file
path'
required: true
message:
Expand Down
3,702 changes: 2,243 additions & 1,459 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

39 changes: 25 additions & 14 deletions dist/licenses.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sourcemap-register.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "appcircle-testing-distribution",
"description": "Efficiently distribute application builds to users or testing groups using Appcircle's robust platform.",
"version": "0.0.2",
"version": "0.0.3",
"author": "appcircleio",
"private": true,
"homepage": "https://github.com/appcircleio/appcircle-testing-distribution-githubaction",
Expand Down
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ export async function run(): Promise<void> {
const appPath = core.getInput('appPath')
const message = core.getInput('message')

const validExtensions = ['.ipa', '.apk', '.aab', '.zip']
const validExtensions = ['.ipa', '.apk', '.aab']
const fileExtension = appPath.slice(appPath.lastIndexOf('.')).toLowerCase()
if (!validExtensions.includes(fileExtension)) {
core.setFailed(
`Invalid file extension for '${appPath}'. Please use one of the following:\n` +
`- Android: .apk or .aab\n` +
`- iOS: .ipa or .zip(.xcarchive)`
`- iOS: .ipa`
)
return
}
Expand Down
Loading