Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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