If stack doesn't support this arch, only fail if enable-stack: true.
Example of a workflow failure: https://github.com/0rphee/cripto_final/actions/runs/20246908790/job/58129213772
The offending function:
|
async function stackArchString(arch: Arch): Promise<string> { |
|
switch (arch) { |
|
case 'arm64': |
|
return Promise.resolve('aarch64'); |
|
case 'x64': |
|
return Promise.resolve('x86_64'); |
|
default: |
|
const err = `Unsupported architecture: ${arch}`; |
|
core.error(err); |
|
return Promise.reject(err); |
|
} |
|
} |
If stack doesn't support this arch, only fail if
enable-stack: true.Example of a workflow failure: https://github.com/0rphee/cripto_final/actions/runs/20246908790/job/58129213772
The offending function:
setup/src/installer.ts
Lines 224 to 235 in 45e5652