This is a grunt-task to upload a ZIP archive to build.phonegap.com and trigger a new build.
The current version is 0.0.6, this project is in BETA and under active development.
##Configuration First of all, you need a ZIP file, containing the contents of the PhoneGap app to be built. This can be created using grunt-zipstream for example. The ZIP file should have the "index.html" and the "Config.xml" in the root level and all required resources below, for example:
├── Config.xml
├── css
│ ├── app.css
│ ├── foundation.min.css
│ ├── lungo.css
│ ├── lungo.icon.brand.css
│ ├── lungo.icon.css
│ └── theme.lungo.css
├── icon.png
├── js
│ ├── app.js
│ ├── controller.js
│ ├── directives.js
│ ├── filters.js
│ ├── services.js
├── images
│ └── background.jpg
├── index.html
Then, some configuration for phonegap-build is needed:
appId
: The App ID of the application on build.phonegap.com (see details of your app there to get it)user
: The email and password or the Github authentication token (all three optional) you log in with on build.phonegap.com. If you leave out your password it will prompt you when grunt runs.timeout
: (optional, default: 5 seconds) a timeout. You may need to increase this value if you are trying to upload a large app or have a slow connection.
archive
: The path (or filename, if it's in the same directory as the Gruntfile) to the ZIP archive
isRepository
: True to set the build method to "pull from repository"
That's all. Once you configured the build-phonegap, you can run
$ grunt phonegap-build
or if you have a "zip" target to create the archive before:
$ grunt zip phonegap-build
to create a new build. Note: This is a multitask, so you can specify different configurations for it (e.g. test and production). You need to specify at least one configuration Here is an example for a Gruntfile.js:
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
"phonegap-build": {
debug: {
options: {
archive: "app.zip",
"appId": "1234",
"user": {
"email": "[email protected]",
"password": "yourPassw0rd"
}
}
},
release: {
options: {
"isRepository": "true",
"appId": "9876",
"user": {
"token": "ABCD123409876XYZ"
}
}
}
},
zip: {
app: {
file: {
src: ["index.html", "js/**/*.js", "css/**/*.js", "icon.png", "images/background.jpg"],
dest: "app.zip"
}
}
}
});
// Load tasks.
grunt.loadNpmTasks('grunt-zipstream');
grunt.loadNpmTasks('grunt-phonegap-build');
// Default task.
grunt.registerTask('default', 'zip phonegap-build:debug');
};
This example also aliased
$ grunt
to run "zip" and then "phonegap-build" for you.
If the build requires signing, another task is available to unlock its key, to be performed before, for example:
$ grunt phonegapBuildUnlockKey phonegap-build
Additional configuration is required:
key.id
: The Key ID of the uploaded signing key on build.phonegap.com.key.platform
: The platform the key refers to, i.e. ios, android, etc.key.password
: The password to unlock the key, if left out a prompt will let you enter it from the command line.user
: authentication like in the phonegap-build task, with user and password or just token.timeout
: (optional, default: 5 seconds) a timeout for the connection to build.phonegap.com.
Note: This is a multitask also, so you can specify different configurations for example for every platform you need.
Here is an example for a Gruntfile.js:
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
phonegapBuildUnlockKey: {
ios: {
options: {
key: {
id: "5678",
platform: "ios"
},
user: {
token: "1234567ABCDEFGHI"
}
}
},
},
"phonegap-build": ...,
zip: ...
});
// Load tasks.
grunt.loadNpmTasks('grunt-zipstream');
grunt.loadNpmTasks('grunt-phonegap-build');
// Default task.
grunt.registerTask('default', 'zip phonegapBuildUnlockKey phonegap-build');
};
##Reference
PhoneGap API documents: https://build.phonegap.com/docs/api