Table-like layout for macos too.
This commit is contained in:
parent
b158cca5b9
commit
5b6edd40e2
1 changed files with 6 additions and 4 deletions
|
@ -13,11 +13,12 @@ otool -L "RSS Guard.app/Contents/MacOS/rssguard"
|
||||||
|
|
||||||
set -- *.dmg
|
set -- *.dmg
|
||||||
dmgname="$1"
|
dmgname="$1"
|
||||||
|
git_revision=$(git rev-parse --short HEAD)
|
||||||
|
|
||||||
if [ "$USE_WEBENGINE" = true ]; then
|
if [ "$USE_WEBENGINE" = true ]; then
|
||||||
dmgnamenospace="rssguard-$(git rev-parse --short HEAD)-mac64.dmg"
|
dmgnamenospace="rssguard-${git_revision}-mac64.dmg"
|
||||||
else
|
else
|
||||||
dmgnamenospace="rssguard-$(git rev-parse --short HEAD)-nowebengine-mac64.dmg"
|
dmgnamenospace="rssguard-${git_revision}-nowebengine-mac64.dmg"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mv "$dmgname" "$dmgnamenospace"
|
mv "$dmgname" "$dmgnamenospace"
|
||||||
|
@ -30,8 +31,9 @@ git config --global user.email "rotter.martinos@gmail.com"
|
||||||
git config --global user.name "martinrotter"
|
git config --global user.name "martinrotter"
|
||||||
git clone -q --depth=1 https://martinrotter:${GH_TOKEN}@github.com/martinrotter/rssguard.wiki.git ./build-wiki
|
git clone -q --depth=1 https://martinrotter:${GH_TOKEN}@github.com/martinrotter/rssguard.wiki.git ./build-wiki
|
||||||
|
|
||||||
curl --upload-file "./$dmgname" "https://transfer.sh/$dmgnamenospace" --silent >> ./build-wiki/Mac-OS-X-development-builds.md
|
url=$(curl --upload-file "./$dmgname" "https://transfer.sh/$dmgnamenospace" --silent)
|
||||||
echo "\n" >> ./build-wiki/Mac-OS-X-development-builds.md
|
|
||||||
|
echo "| $(date +'%m-%d-%Y %T') | [$git_revision](https://github.com/martinrotter/rssguard/commit/$git_revision) | [transfer.sh]($url) | $(echo "$USE_WEBENGINE") | "$'\r' >> ./build-wiki/Mac-OS-X-development-builds.md
|
||||||
|
|
||||||
cd ./build-wiki
|
cd ./build-wiki
|
||||||
git add *.*
|
git add *.*
|
||||||
|
|
Loading…
Add table
Reference in a new issue