Skip to content

Commit 8dca2bf

Browse files
committed
Add GitHub deployment to Travis
1 parent 4a812cd commit 8dca2bf

File tree

4 files changed

+26
-1
lines changed

4 files changed

+26
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ bower_components
22
coverage
33
node_modules
44

5+
cbor-js.zip
56
cbor.min.js
67
sauce_connect.log

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,11 @@ env:
1010
- secure: "UM4h/x6asOBi5D9ieBW3v6TqTwVpFWFopaUH8WQ004xufrLM2BuqhWhldn3x8OdASia7uAzv40G4ApF+nbOdlsdjxqGH18NpsDsdd1aqziZvHbim7UiFwT93fngbPDInd0KI2q3U8ed0M9KtswvlHNAiIMVf8lEPW2B3At4shi8="
1111
- secure: "W3FSQ8IISzEjDov8pMaqO8pTJfQ5In/XMa/756ez80GWmdWs71NyxWKaSCm5aebU++P6ULk9+e1/V8Xz+UF+tZpPN+3Fl0y/aiNLQpi2f37WNEAPvGW7Y2+wUdZa74iTC7nmsVWqYFI47ylFyoKbdcrmSpQ3JFi18E1/QdEx77E="
1212
- secure: "Uax0duT20upUZWkmiuyhLmf12zJTcjwP1t8E5CLdx3eXBoFebs9fiKqoMV3ImUHLuYG4A34JGDMCWkrY8WYIi2ja8idzNjmDTcMz70U5B0v/ChFEKPUQVnpcM0FAkaHwZsoCrO1XJFnzJkHLLFoKEraUdHpl+ADMg1I+E9iakHM="
13+
deploy:
14+
provider: releases
15+
api_key:
16+
secure: VFop18LuK90E6rBK8OCWJDbdd6+IT/whnXlrO9P24nN+QUo/T1IiHQ0l1UdvKa9/4lRSW8b0tW7tkC10B3eP98aOkt8+VuaoblienmIHzpyv9Pm7JSJilVeNnqr73Q97thRlwqHl0s5olE8EFcdpsufv5XFQwJoNqn20K0NXnBs=
17+
file: cbor-js.zip
18+
skip_cleanup: true
19+
on:
20+
tags: true

Gruntfile.js

+16-1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,20 @@ module.exports = function(grunt) {
6060
}
6161
}
6262
},
63+
compress: {
64+
all: {
65+
options: {
66+
archive: 'cbor-js.zip',
67+
mode: 'zip'
68+
},
69+
files: [
70+
{ src: 'LICENSE' },
71+
{ src: 'README.md' },
72+
{ src: 'cbor.js' },
73+
{ src: 'cbor.min.js' }
74+
]
75+
}
76+
},
6377
connect: {
6478
server: {
6579
options: {
@@ -138,6 +152,7 @@ module.exports = function(grunt) {
138152
});
139153

140154
grunt.loadNpmTasks("grunt-bower-install-simple");
155+
grunt.loadNpmTasks("grunt-contrib-compress");
141156
grunt.loadNpmTasks("grunt-contrib-connect");
142157
grunt.loadNpmTasks("grunt-contrib-jshint");
143158
grunt.loadNpmTasks("grunt-contrib-qunit");
@@ -149,5 +164,5 @@ module.exports = function(grunt) {
149164
grunt.registerTask("default", ["test"]);
150165
grunt.registerTask("test", ["bower-install-simple", "qunit:src", "jshint"]);
151166
grunt.registerTask("test-min", ["bower-install-simple", "uglify", "qunit:min"]);
152-
grunt.registerTask("ci", ["test", "coveralls", "test-min", "connect", "saucelabs-qunit"]);
167+
grunt.registerTask("ci", ["test", "coveralls", "test-min", "connect", "saucelabs-qunit", "compress"]);
153168
};

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"grunt": "~0.4.5",
2323
"grunt-bower-install-simple": "~1.1.4",
2424
"grunt-cli": "~0.1.13",
25+
"grunt-contrib-compress": "~0.13.0",
2526
"grunt-contrib-connect": "~0.11.2",
2627
"grunt-contrib-jshint": "~0.11.2",
2728
"grunt-contrib-qunit": "~0.7.0",

0 commit comments

Comments
 (0)