mirror of https://github.com/Kylart/KawAnime.git
11 lines
280 B
Bash
11 lines
280 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ -z "$GH_TOKEN" ]; then
|
||
|
echo "You must set the GH_TOKEN environment variable."
|
||
|
echo "See README.md for more details."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# This will build, package and upload the app to GitHub.
|
||
|
node_modules/.bin/build --win --mac --linux deb AppImage -p always
|