We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
path
Considering I want to upload App.apk and file.zip
App.apk
file.zip
If I use path: "test" => the apk will be uploaded as testApp.apk while the files will be stored in test/file.zip
path: "test"
testApp.apk
test/file.zip
If I use path: "test/" => the apk will be uploaded as test/App.apk while the files will NOT be uploaded
path: "test/"
test/App.apk
This is because the path is handled inconsistently for uploading files and apk
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Considering I want to upload
App.apk
andfile.zip
If I use
path: "test"
=> the apk will be uploaded as
testApp.apk
while the files will be stored intest/file.zip
If I use
path: "test/"
=> the apk will be uploaded as
test/App.apk
while the files will NOT be uploadedThis is because the path is handled inconsistently for uploading files and apk
The text was updated successfully, but these errors were encountered: