Skip to content

Commit d97dba7

Browse files
committed
Temporary grunt tasks fix
1 parent b9b25ad commit d97dba7

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

Gruntfile.js

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = function (grunt) {
44
pkg: grunt.file.readJSON('package.json'),
55
shell: {
66
composer: {
7-
command: './composer.phar install --no-dev --no-scripts --prefer-dist'
7+
command: 'composer install --no-dev --no-scripts --prefer-dist'
88
},
99
git_checkout: {
1010
command: 'git checkout-index -a -f --prefix=build/'
@@ -129,22 +129,22 @@ module.exports = function (grunt) {
129129
]
130130
}
131131
},
132-
'github-release': {
133-
options: {
134-
repository: 'kgjerstad/wp-mail-logging', // Path to repository
135-
auth: grunt.file.readJSON('credentials.json'),
136-
release: {
137-
tag_name: 'release/<%= pkg.version %>',
138-
name: 'v<%= pkg.version %>',
139-
body: 'Description of the release',
140-
draft: true,
141-
prerelease: true
142-
}
143-
},
144-
files: {
145-
src: ['releases/<%= pkg.name %>-<%= pkg.version %>.zip']
146-
}
147-
},
132+
// 'github-release': {
133+
// options: {
134+
// repository: 'kgjerstad/wp-mail-logging', // Path to repository
135+
// auth: grunt.file.readJSON('credentials.json'),
136+
// release: {
137+
// tag_name: 'release/<%= pkg.version %>',
138+
// name: 'v<%= pkg.version %>',
139+
// body: 'Description of the release',
140+
// draft: true,
141+
// prerelease: true
142+
// }
143+
// },
144+
// files: {
145+
// src: ['releases/<%= pkg.name %>-<%= pkg.version %>.zip']
146+
// }
147+
// },
148148
less: {
149149
compile: {
150150
options: {

0 commit comments

Comments
 (0)