Skip to content

Commit

Permalink
[ci] Update CHANGELOG format for deploy Node/Standalone browser old v…
Browse files Browse the repository at this point in the history
…ersions

Signed-off-by: Viet Nguyen Duc <[email protected]>
  • Loading branch information
VietND96 committed Feb 3, 2025
1 parent a496fc8 commit 42c4bd9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release-chrome-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ jobs:
echo "GRID_VERSION=${GRID_VERSION}" >> $GITHUB_ENV
env:
GRID_VERSION: ${{ needs.deploy.outputs.GRID_VERSION }}
- name: Create CHANGELOG directory
run: mkdir -p ./CHANGELOG/${{ env.GRID_VERSION }}
- name: Download results
uses: actions/download-artifact@v4
with:
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ A single command to enable that feature in Docker Engine:
make set_containerd_image_store
```

To build all the images for multiplatform, run the following command:
To build all the images for multiplatform at once, run the following command:

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

By default, without specifying the `PLATFORMS` variable, the images are built for the `linux/amd64` platform.
By default, without specifying the `PLATFORMS` variable, the images are built with current host architecture.

Similarly, if you are using host ARM64 architecture, you can build the images for AMD64 architecture by running the following command:

```bash
PLATFORMS=linux/amd64 make build
```

___

Expand Down
3 changes: 2 additions & 1 deletion tests/build-backward-compatible/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,11 @@ for CDP_VERSION in "${VERSION_LIST[@]}"; do
fi

if [ "${PUSH_IMAGE}" = "false" ]; then
echo -n "" > ./CHANGELOG/${SELENIUM_VERSION}/${BROWSER}_${CDP_VERSION}.md
echo "\`\`\`" > ./CHANGELOG/${SELENIUM_VERSION}/${BROWSER}_${CDP_VERSION}.md
echo "$TAG_LOG_OUTPUT" | while IFS= read -r line; do
echo "$line" >> ./CHANGELOG/${SELENIUM_VERSION}/${BROWSER}_${CDP_VERSION}.md
done ;
echo "\`\`\`" >> ./CHANGELOG/${SELENIUM_VERSION}/${BROWSER}_${CDP_VERSION}.md
else
echo "${TAG_LOG_OUTPUT}"
fi
Expand Down

0 comments on commit 42c4bd9

Please sign in to comment.