diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-05-22 21:45:38 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-05-24 15:37:06 +0200 |
commit | 64669c18992339fa632bfea0bf13691844252777 (patch) | |
tree | 65e9d51d5f24e18f22fcb511bbdf9e9aff784a19 /src/Main.hs | |
parent | 50526acfb2251d1076c3486dceecae08f44d8a64 (diff) |
Extract command
Changelog: Added `extract` command to extract artifacts
Diffstat (limited to 'src/Main.hs')
-rw-r--r-- | src/Main.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Main.hs b/src/Main.hs index 89fab39..0227e74 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -21,6 +21,7 @@ import System.IO import Command import Command.Checkout +import Command.Extract import Command.JobId import Command.Log import Command.Run @@ -88,6 +89,7 @@ commands :: NE.NonEmpty SomeCommandType commands = ( SC $ Proxy @RunCommand) NE.:| [ SC $ Proxy @CheckoutCommand + , SC $ Proxy @ExtractCommand , SC $ Proxy @JobIdCommand , SC $ Proxy @LogCommand ] |