2016-08-24 12:30:11 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
mkdir rssguard-build && cd rssguard-build
|
|
|
|
qmake ..
|
|
|
|
make
|
2016-09-26 07:47:24 +02:00
|
|
|
make dmg
|
2016-08-26 06:31:05 +02:00
|
|
|
|
2016-08-24 12:51:12 +02:00
|
|
|
ls -lha
|
2016-08-25 22:31:51 +02:00
|
|
|
|
2016-09-23 07:17:20 +02:00
|
|
|
otool -L rssguard.app/Contents/MacOS/rssguard
|
|
|
|
|
2016-08-26 07:40:21 +02:00
|
|
|
git config --global user.email "rotter.martinos@gmail.com"
|
|
|
|
git config --global user.name "martinrotter"
|
2016-08-29 13:07:18 +02:00
|
|
|
git clone -q --depth=1 https://martinrotter:${GH_TOKEN}@github.com/martinrotter/rssguard.wiki.git ./build-wiki
|
2016-09-26 07:47:24 +02:00
|
|
|
|
2016-09-26 08:06:52 +02:00
|
|
|
set -- *.dmg
|
|
|
|
dmgname="$1"
|
|
|
|
echo $dmgname
|
2016-09-26 07:47:24 +02:00
|
|
|
|
|
|
|
curl --upload-file ./$dmgname https://transfer.sh/$dmgname --silent >> ./build-wiki/Mac-OS-X-development-builds.md
|
2016-08-30 07:49:53 +02:00
|
|
|
echo >> ./build-wiki/Mac-OS-X-development-builds.md
|
2016-08-29 13:07:18 +02:00
|
|
|
cat ./build-wiki/Mac-OS-X-development-builds.md
|
2016-08-25 22:31:51 +02:00
|
|
|
|
2016-08-29 13:07:18 +02:00
|
|
|
cd ./build-wiki
|
|
|
|
git add *.*
|
2016-08-25 22:31:51 +02:00
|
|
|
git commit -m "New files."
|
2016-08-29 13:07:18 +02:00
|
|
|
git push origin master
|