File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ RUN mkdir /ms-playwright && \
43
43
# if its arm64 then install the manylinux1_aarch64 pip package
44
44
if [ "$(uname -m)" = "aarch64" ]; then pip install /tmp/*manylinux_2_17_aarch64*.whl; fi && \
45
45
playwright mark-docker-image "${DOCKER_IMAGE_NAME_TEMPLATE}" && \
46
+ playwright install --with-deps && rm -rf /var/lib/apt/lists/* && \
46
47
# Workaround for https://github.com/microsoft/playwright/issues/27313
47
48
# While the gstreamer plugin load process can be in-process, it ended up throwing
48
49
# an error that it can't have libsoup2 and libsoup3 in the same process because
@@ -52,7 +53,6 @@ RUN mkdir /ms-playwright && \
52
53
else \
53
54
rm /usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebrtc.so; \
54
55
fi && \
55
- playwright install --with-deps && rm -rf /var/lib/apt/lists/* && \
56
56
rm /tmp/*.whl && \
57
57
rm -rf /ms-playwright-agent && \
58
58
chmod -R 777 /ms-playwright
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ if [[ "${RELEASE_CHANNEL}" == "stable" ]]; then
16
16
exit 1
17
17
fi
18
18
elif [[ " ${RELEASE_CHANNEL} " == " canary" ]]; then
19
- if [[ " ${PW_VERSION} " != * post * ]]; then
19
+ if [[ " ${PW_VERSION} " != * dev * ]]; then
20
20
echo " ERROR: cannot publish canary docker with Playwright version '${PW_VERSION} '"
21
21
exit 1
22
22
fi
You can’t perform that action at this time.
0 commit comments