KC's Workspace
    Preparing search index...

    Function setOutputs

    • Sets multiple output values for GitHub Actions.

      Type Parameters

      Parameters

      • outputs: TOutputs

        A record of output names to values

      Returns { [K in string | number | symbol]: string }

      A record of output names to their serialized string values

      const results = setOutputs({
      name: "my-package",
      version: "1.0.0",
      published: true
      });
      // Returns { name: "my-package", version: "1.0.0", published: "true" }