Skip to content

Commit

Permalink
Merge pull request #328 from bryk/release-2-jan
Browse files Browse the repository at this point in the history
Set first release version and fix gulp release pipeline
  • Loading branch information
bryk committed Feb 3, 2016
2 parents c25dd5b + a422501 commit 04453c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default {
/**
* The release version of the image.
*/
versionRelease: '0.0.1',
versionRelease: 'v0.1.0',
/**
* The canary version name of the image. Canary is an image that is frequently published,
* and has no release schedule.
Expand Down
2 changes: 1 addition & 1 deletion build/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ gulp.task('push-to-gcr:canary', ['docker-image:canary'], function(doneFn) {
* Pushes release image to GCR.
*/
gulp.task('push-to-gcr:release', ['docker-image:release'], function(doneFn) {
pushToGcr(conf.deploy.versionCanary, doneFn);
pushToGcr(conf.deploy.versionRelease, doneFn);
});

/**
Expand Down

0 comments on commit 04453c0

Please sign in to comment.