GitHub/Jobs/BuildScriptDeck.psd1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
@{ "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" } ) } |