GitHub/Jobs/BuildScriptDeck.psd1

@{
    "runs-on" = "macos-latest"    
    if = '${{ success() }}'
    steps = @(
        @{
            name = 'Check out repository'
            uses = 'actions/checkout@v2'
        }, 
        @{    
            name = 'Use PSSVG Action'
            uses = 'StartAutomating/PSSVG@main'
            id = 'PSSVG'
        },        
        'RunEZOut',
        'RunPipeScript',
        
        'RunHelpOut',
        @{
            name = "ScriptDeck"
            uses = "StartAutomating/ScriptDeck@main"
        }
    )
}