Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Download the sample workflow (.json upload)jdDailyReport.workflow.json
  • For use with Unix environments you can use the sample workflow, however, you have to replace the first line of each job to make use of a Unix shebang.

    Code Block
    languagebash
    titleShebang for PowerShell Job with Unix
    #!/usr/bin/env pwsh

    Explanation:

    • Use of a shebang allows to invoke the pwsh PowerShell executable. 

...