Merge pull request #1172 from 23rd/patch-28-mac-dmg

Improved dmg creation.
This commit is contained in:
pajlada 2019-08-03 11:49:02 +02:00 committed by GitHub
commit 0a4e9d1c54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,14 +9,21 @@ addons:
- rapidjson
- qt
- p7zip
- create-dmg
compiler: clang
script:
- mkdir build && cd build
- /usr/local/opt/qt/bin/qmake .. && make -j8
- /usr/local/opt/qt/bin/macdeployqt chatterino.app -dmg
- mv chatterino.dmg chatterino-osx.dmg
- mkdir app
- mv chatterino.app app/
- "create-dmg \
--volname Chatterino2 \
--volicon ../resources/chatterino.icns \
--icon-size 50 \
--app-drop-link 0 0 \
chatterino-osx.dmg app/"
before_deploy:
- git config --global user.email "builds@travis-ci.com"