You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A user of the action can supply platforms: "linux/arm64, linux/amd64" (note the space between the two platforms), but the double quotes are not persisted to the script call: platforms=${{ inputs.platforms }}. This will result in an error line 1: linux/amd64: No such file or directory.
If whitespace between platforms is to be supported, then quotes should be added to this input when calling the script.
The text was updated successfully, but these errors were encountered:
A user of the action can supply
platforms: "linux/arm64, linux/amd64"
(note the space between the two platforms), but the double quotes are not persisted to the script call:platforms=${{ inputs.platforms }}
. This will result in an errorline 1: linux/amd64: No such file or directory
.If whitespace between platforms is to be supported, then quotes should be added to this input when calling the script.
The text was updated successfully, but these errors were encountered: