Skip to content

Commit

Permalink
[ci] Attempt to fix create_release for arm64 linux (#7266)
Browse files Browse the repository at this point in the history
This was supposed to be part of #7258
  • Loading branch information
sbc100 authored Feb 3, 2025
1 parent 6fe5103 commit 758cb17
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,10 @@ jobs:

- name: start docker
run: |
docker run -w /src -dit --name alpine -v $PWD:/src node:lts-alpine
if [[ "${{ matrix.docker_platform }}" == "ubuntu-24.04-arm" ]]; then
platform="--platform=linux/arm64"
fi
docker run -w /src -dit $platform --name alpine -v $PWD:/src node:lts-alpine
echo 'docker exec alpine "$@";' > ./alpine.sh
chmod +x ./alpine.sh
Expand Down

0 comments on commit 758cb17

Please sign in to comment.