We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bfe805 commit 2662e74Copy full SHA for 2662e74
package.json
@@ -43,7 +43,8 @@
43
"sync": "cordova-res android --icon-background-source '#FFFFFF' --skip-config --copy && cap sync",
44
"test": "react-scripts test",
45
"eject": "react-scripts eject",
46
- "release": "standard-version"
+ "release": "standard-version",
47
+ "upload": "./scripts/upload-apk.sh"
48
},
49
"eslintConfig": {
50
"extends": [
scripts/upload-apk.sh
@@ -0,0 +1,7 @@
1
+#!/bin/bash
2
+set -e
3
+
4
+CD=$(dirname $0)
5
+VERSION=$(git describe)
6
7
+gh release upload $VERSION $CD/../android/app/build/outputs/apk/release/task.json-web-$VERSION.apk
0 commit comments