Fix warning ARCH typo

This commit is contained in:
Ryan Schumacher 2022-09-07 06:12:25 -05:00 committed by GitHub
parent d097e2e3d2
commit 3def0bed7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,7 @@ export function getArch(): string[] {
if (arch && archs.length > 0) { if (arch && archs.length > 0) {
core.warning( core.warning(
`Both "${Inputs.ARCH}" and "${Inputs.ARCHS}" inputs are set. ` `Both "${Inputs.ARCH}" and "${Inputs.ARCHS}" inputs are set. `
+ `Please use "${Inputs.ARCH}" if you want to provide multiple ` + `Please use "${Inputs.ARCHS}" if you want to provide multiple `
+ `ARCH else use ${Inputs.ARCH}". "${Inputs.ARCHS}" takes preference.` + `ARCH else use ${Inputs.ARCH}". "${Inputs.ARCHS}" takes preference.`
); );
} }