GitHub/Jobs/BuildHelpOut.psd1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
@{ "runs-on" = "ubuntu-latest" if = '${{ success() }}' steps = @( @{ name = 'Check out repository' uses = 'actions/checkout@v2' }, @{ name = 'Use PSSVG Action' uses = 'StartAutomating/PSSVG@main' id = 'PSSVG' }, 'RunPipeScript', 'RunEZOut', @{ name = 'Run Help Out (on master)' if = '${{github.ref_name == ''master''}}' uses = 'StartAutomating/HelpOut@master' id = 'HelpOutMaster' }, @{ name = 'Run Help Out (on branch)' if = '${{github.ref_name != ''master''}}' uses = './' id = 'HelpOutBranch' } ) } |