From 99d992ee7692ee4a8599af469cfeed42b3ce0c48 Mon Sep 17 00:00:00 2001 From: Nana Janashia Date: Thu, 5 Nov 2020 17:47:49 +0000 Subject: [PATCH] Add new file --- script.groovy | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 script.groovy diff --git a/script.groovy b/script.groovy new file mode 100644 index 0000000..8394048 --- /dev/null +++ b/script.groovy @@ -0,0 +1,14 @@ +def buildApp() { + echo 'building the application...' +} + +def testApp() { + echo 'testing the application...' +} + +def deployApp() { + echo 'deplying the application...' + echo "deploying version ${params.VERSION}" +} + +return this \ No newline at end of file