Build/GitHub/Jobs/BuildMathML.psd1

@{
    "runs-on" = "ubuntu-latest"    
    if = '${{ success() }}'
    steps = @(
        @{
            name = 'Check out repository'
            uses = 'actions/checkout@main'
        },                
        'RunEZOut' # ,
        <#@{
            name = 'Run MathML (on branch)'
            if = '${{github.ref_name != ''main''}}'
            uses = './'
            id = 'MathMLAction'
        }#>

        # 'BuildAndPublishContainer'
    )
}