mounts property

List<Mount>? mounts
getter/setter pair

A list of mounts to make available to the action.

In addition to the values specified here, every action has a special virtual disk mounted under /google that contains log files and other operational components. - /google/logs All logs written during the pipeline execution. - /google/logs/output The combined standard output and standard error of all actions run as part of the pipeline execution. - /google/logs/action / * /stdout The complete contents of each individual action's standard output. - /google/logs/action / * /stderr The complete contents of each individual action's standard error output.

Implementation

core.List<Mount>? mounts;