1
0
mirror of https://github.com/actions/setup-node.git synced 2025-04-06 03:52:42 +08:00
This commit is contained in:
adilhusain-s 2025-03-30 07:02:46 +00:00 committed by GitHub
commit e3687a14ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions
dist/setup
src/distributions

2
dist/setup/index.js vendored
View File

@ -97386,6 +97386,8 @@ class BaseDistribution {
switch (arch) { switch (arch) {
case 'arm': case 'arm':
return 'armv7l'; return 'armv7l';
case 'ppc64':
return 'ppc64le';
default: default:
return arch; return arch;
} }

View File

@ -309,6 +309,8 @@ export default abstract class BaseDistribution {
switch (arch) { switch (arch) {
case 'arm': case 'arm':
return 'armv7l'; return 'armv7l';
case 'ppc64':
return 'ppc64le';
default: default:
return arch; return arch;
} }