Interface Step

    • Method Detail

      • getRun

        @Stability(Experimental)
        @Nullable
        default String getRun()
        (experimental) Runs command-line programs using the operating system's shell.

        If you do not provide a name, the step name will default to the text specified in the run command.

      • getUses

        @Stability(Experimental)
        @Nullable
        default String getUses()
        (experimental) Selects an action to run as part of a step in your job.

        An action is a reusable unit of code. You can use an action defined in the same repository as the workflow, a public repository, or in a published Docker container image.

      • getWith

        @Stability(Experimental)
        @Nullable
        default Map<String,​Object> getWith()
        (experimental) A map of the input parameters defined by the action.

        Each input parameter is a key/value pair. Input parameters are set as environment variables. The variable is prefixed with INPUT_ and converted to upper case.