mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 09:27:24 +00:00
enabled notarization on travis
This commit is contained in:
parent
7b249a82d7
commit
4441bc7e05
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ const notarizer = require('electron-notarize')
|
|||
module.exports = async function (params) {
|
||||
console.log('env: ', process.env)
|
||||
// notarize the app on Mac OS only.
|
||||
if (process.platform !== 'darwin' || process.env.BUILD_SOURCEBRANCH !== 'refs/heads/master') {
|
||||
if (process.platform !== 'darwin' || process.env.BUILD_SOURCEBRANCH !== 'refs/heads/master' || process.env.TRAVIS_BRANCH && !process.env.TRAVIS_PULL_REQUEST_BRANCH) {
|
||||
return
|
||||
}
|
||||
console.log('afterSign hook triggered', params)
|
||||
|
|
Loading…
Reference in a new issue