Skip to content

Commit 04453c0

Browse files
committed
Merge pull request #328 from bryk/release-2-jan
Set first release version and fix gulp release pipeline
2 parents c25dd5b + a422501 commit 04453c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default {
5959
/**
6060
* The release version of the image.
6161
*/
62-
versionRelease: '0.0.1',
62+
versionRelease: 'v0.1.0',
6363
/**
6464
* The canary version name of the image. Canary is an image that is frequently published,
6565
* and has no release schedule.

build/deploy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ gulp.task('push-to-gcr:canary', ['docker-image:canary'], function(doneFn) {
105105
* Pushes release image to GCR.
106106
*/
107107
gulp.task('push-to-gcr:release', ['docker-image:release'], function(doneFn) {
108-
pushToGcr(conf.deploy.versionCanary, doneFn);
108+
pushToGcr(conf.deploy.versionRelease, doneFn);
109109
});
110110

111111
/**

0 commit comments

Comments
 (0)