From 35e6c49d7c676114f0b9a02abae4b32bbfc5ab1d Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 7 May 2025 11:14:05 +0200 Subject: [PATCH] devops: publish Docker image to :latest as well (#365) We don't do that for normal Playwright because we expect the user to mount/add/copy their own Playwright folder and there the version has to match. In this case publishing to `:latest` seems fine since its a isolated product. --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 136c0d9..bf8e20c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -50,4 +50,6 @@ jobs: file: ./Dockerfile # Adjust path if your Dockerfile is elsewhere platforms: linux/amd64,linux/arm64 push: true - tags: playwright.azurecr.io/public/playwright/mcp:${{ github.ref_name }} + tags: | + playwright.azurecr.io/public/playwright/mcp:${{ github.ref_name }} + playwright.azurecr.io/public/playwright/mcp:latest