We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe5103 commit 758cb17Copy full SHA for 758cb17
.github/workflows/create_release.yml
@@ -119,7 +119,10 @@ jobs:
119
120
- name: start docker
121
run: |
122
- docker run -w /src -dit --name alpine -v $PWD:/src node:lts-alpine
+ if [[ "${{ matrix.docker_platform }}" == "ubuntu-24.04-arm" ]]; then
123
+ platform="--platform=linux/arm64"
124
+ fi
125
+ docker run -w /src -dit $platform --name alpine -v $PWD:/src node:lts-alpine
126
echo 'docker exec alpine "$@";' > ./alpine.sh
127
chmod +x ./alpine.sh
128
0 commit comments