Last active
September 4, 2024 12:28
-
-
Save mebiusbox/ed2f0c862a1b7662db2a7df091d8fed0 to your computer and use it in GitHub Desktop.
makers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[config] | |
skip_core_tasks = true | |
[tasks.default] | |
alias = "test" | |
[tasks.ps] | |
description = "powershell script example" | |
category = "Common" | |
script_runner = "powershell" | |
script_extension = "ps1" | |
script = ''' | |
Write-Host "Hello, World!" | |
''' | |
[tasks.test] | |
description = "lists all known steps" | |
category = "Common" | |
command = "makers" | |
args = [ | |
"${@}", | |
"--list-all-steps" | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment