Skip to content

Instantly share code, notes, and snippets.

View easterapps's full-sized avatar
🎮
coding

Jakob Haubold easterapps

🎮
coding
View GitHub Profile
@ouchadam
ouchadam / upload.sh
Last active February 20, 2023 15:02
Upload APK to appcenter app=my-cool-app owner=owner-in-appcenter file=path/to/file token=1234-api-token destination_name=group-to-apply
#!/bin/bash
set -e
CONFIG=$@
for line in $CONFIG; do
eval "$line"
done
AUTH="X-API-Token: $token"
CONTENT_TYPE=application/vnd.android.package-archive