From e7ddf868bf0e893e5183787e85d93496f28c5c28 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Thu, 30 Jul 2020 11:45:54 -0700 Subject: [PATCH] devops: rename docker image tag for tip-of-tree images (#3222) We currently tag tip-of-tree docker images with `dev` tag. It'll be much nicer to have consistent taggin with our `npm` which tags with `next` tag. This patch removes the `dev` tag and starts using the `next` tag instead for docker images. Since we haven't announced `dev` tag support anywhere, I think it's fine to remove it rather than have both `next` and `dev`. --- .github/workflows/publish_canary_docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_canary_docker.yml b/.github/workflows/publish_canary_docker.yml index 4bda501cdb1d1..b183a1c841c9b 100644 --- a/.github/workflows/publish_canary_docker.yml +++ b/.github/workflows/publish_canary_docker.yml @@ -29,6 +29,6 @@ jobs: repository: public/playwright path: docs/docker/ dockerfile: docs/docker/Dockerfile.bionic - tags: dev + tags: next tag_with_sha: true