Added sh file

This commit is contained in:
Jakub Henyk 2023-03-28 12:43:16 +02:00
parent 089629d6a0
commit 88b5242851
2 changed files with 9 additions and 0 deletions

7
Jenkinsfile vendored
View File

@ -17,6 +17,13 @@ pipeline {
//Wywolaj w konsoli komende "figlet", ktora generuje ASCI-art
sh "figlet \"${INPUT_TEXT}\" | tee output.txt"
}
}
stages {
stage('Run Script') {
steps {
sh 'take_data.sh'
}
}
}
stage('Goodbye!') {
steps {

2
take_data.sh Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
echo "Hello World"