-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
executable file
·76 lines (68 loc) · 1.96 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
'use strict';
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-gh-pages');
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
'gh-pages': {
options: {
branch: 'gh-pages',
base: '_book'
},
publish: {
options: {
repo: 'https://github.com/Trust1Team/api-styleguide.git',
message: 'publish gh-pages (cli)'
},
src: ['**/*']
},
deploy: {
options: {
user: {
name: 'michallis',
email: '[email protected]'
},
repo: 'https://' + process.env.GH_TOKEN + '@github.com/Trust1Team/api-styleguide.git',
message: 'publish gh-pages (auto)' + getDeployMessage(),
silent: true
},
src: ['**/*']
}
}
});
// get a formatted commit message to review changes from the commit log
// github will turn some of these into clickable links
function getDeployMessage() {
var ret = '\n\n';
if (process.env.TRAVIS !== 'true') {
ret += 'missing env vars for travis-ci';
return ret;
}
ret += 'branch: ' + process.env.TRAVIS_BRANCH + '\n';
ret += 'SHA: ' + process.env.TRAVIS_COMMIT + '\n';
ret += 'range SHA: ' + process.env.TRAVIS_COMMIT_RANGE + '\n';
ret += 'build id: ' + process.env.TRAVIS_BUILD_ID + '\n';
ret += 'build number: ' + process.env.TRAVIS_BUILD_NUMBER + '\n';
return ret;
}
grunt.registerTask('check-deploy', function() {
// only deploy under these conditions
if (process.env.TRAVIS === 'true'
&& process.env.TRAVIS_SECURE_ENV_VARS === 'true'
&& process.env.TRAVIS_PULL_REQUEST === 'false'
&& process.env.TRAVIS_BRANCH === 'master') {
grunt.log.writeln('executing deployment');
// queue deploy
grunt.task.run('gh-pages:deploy');
}
else {
grunt.log.writeln('skipped deployment');
}
});
grunt.registerTask('publish', 'Publish from CLI', [
'gh-pages:publish'
]);
grunt.registerTask('deploy', 'Publish from Travis', [
'check-deploy'
]);
grunt.registerTask('default', ['publish']);
};