Skip to content
Merged
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
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ inputs:
required: true
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
summary:
Expand Down
3,704 changes: 2,244 additions & 1,460 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.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "appcircle-enterprise-app-store",
"description": "Enterprise Mobile App Store",
"version": "0.0.2",
"version": "0.0.3",
"author": "Appcircle",
"private": true,
"homepage": "https://github.com/appcircleio/appcircle-enterprise-store-githubaction",
Expand Down Expand Up @@ -93,5 +93,8 @@
"prettier-eslint": "^16.3.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"resolutions": {
"braces": "^3.0.3"
}
}
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ export async function run(): Promise<void> {
const releaseNotes = core.getInput('releaseNotes')
const publishType = core.getInput('publishType') ?? '0'

const validExtensions = ['.apk', '.ipa']
const validExtensions = ['.apk', '.aab', '.ipa']
const fileExtension = appPath.slice(appPath.lastIndexOf('.')).toLowerCase()
if (!validExtensions.includes(fileExtension)) {
core.setFailed(
`Invalid file extension: ${appPath}. For Android, use .apk. For iOS, use .ipa.`
`Invalid file extension: ${appPath}. For Android, use .apk or .aab. For iOS, use .ipa.`
)
return
}
Expand Down
Loading