Skip to content

Commit 42c4bd9

Browse files
committed
[ci] Update CHANGELOG format for deploy Node/Standalone browser old versions
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent a496fc8 commit 42c4bd9

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/release-chrome-versions.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,8 @@ jobs:
160160
echo "GRID_VERSION=${GRID_VERSION}" >> $GITHUB_ENV
161161
env:
162162
GRID_VERSION: ${{ needs.deploy.outputs.GRID_VERSION }}
163+
- name: Create CHANGELOG directory
164+
run: mkdir -p ./CHANGELOG/${{ env.GRID_VERSION }}
163165
- name: Download results
164166
uses: actions/download-artifact@v4
165167
with:

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ A single command to enable that feature in Docker Engine:
183183
make set_containerd_image_store
184184
```
185185

186-
To build all the images for multiplatform, run the following command:
186+
To build all the images for multiplatform at once, run the following command:
187187

188188
```bash
189189
PLATFORMS=linux/amd64,linux/arm64 make build
@@ -195,7 +195,13 @@ To build the images for a specific platform, run the following command:
195195
PLATFORMS=linux/arm64 make build
196196
```
197197

198-
By default, without specifying the `PLATFORMS` variable, the images are built for the `linux/amd64` platform.
198+
By default, without specifying the `PLATFORMS` variable, the images are built with current host architecture.
199+
200+
Similarly, if you are using host ARM64 architecture, you can build the images for AMD64 architecture by running the following command:
201+
202+
```bash
203+
PLATFORMS=linux/amd64 make build
204+
```
199205

200206
___
201207

tests/build-backward-compatible/bootstrap.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,11 @@ for CDP_VERSION in "${VERSION_LIST[@]}"; do
9292
fi
9393

9494
if [ "${PUSH_IMAGE}" = "false" ]; then
95-
echo -n "" > ./CHANGELOG/${SELENIUM_VERSION}/${BROWSER}_${CDP_VERSION}.md
95+
echo "\`\`\`" > ./CHANGELOG/${SELENIUM_VERSION}/${BROWSER}_${CDP_VERSION}.md
9696
echo "$TAG_LOG_OUTPUT" | while IFS= read -r line; do
9797
echo "$line" >> ./CHANGELOG/${SELENIUM_VERSION}/${BROWSER}_${CDP_VERSION}.md
9898
done ;
99+
echo "\`\`\`" >> ./CHANGELOG/${SELENIUM_VERSION}/${BROWSER}_${CDP_VERSION}.md
99100
else
100101
echo "${TAG_LOG_OUTPUT}"
101102
fi

0 commit comments

Comments
 (0)