We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d202f5d commit fe545c6Copy full SHA for fe545c6
src/setup-java.ts
@@ -13,8 +13,8 @@ async function run() {
13
}
14
15
const arch = core.getInput(constants.INPUT_ARCHITECTURE, {required: true});
16
- if (!['x86', 'x64'].includes(arch)) {
17
- throw new Error(`architecture "${arch}" is not in [x86 | x64]`);
+ if (!['x86', 'x64', 'aarch64'].includes(arch)) {
+ throw new Error(`architecture "${arch}" is not in [x86 | x64 | aarch64]`);
18
19
20
const javaPackage = core.getInput(constants.INPUT_JAVA_PACKAGE, {
0 commit comments