mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-13 16:47:55 +00:00
16 lines
312 B
Bash
16 lines
312 B
Bash
|
##################################
|
||
|
#
|
||
|
# GitHub Releases
|
||
|
#
|
||
|
##################################
|
||
|
|
||
|
set +x
|
||
|
|
||
|
# Disabled until GitHub sends prereleases to email
|
||
|
|
||
|
wget -O upload.sh "https://raw.githubusercontent.com/FWGS/uploadtool/master/upload.sh"
|
||
|
chmod +x upload.sh
|
||
|
|
||
|
export GITHUB_TOKEN=$GH_TOKEN
|
||
|
./upload.sh $*
|