website

The files for mattfehrenbach.xyz, a fork of a template.
git clone git://git.mattfehrenbach.xyz/website.git
Log | Files | Refs

commit 60bfe4ff05e99deacdaf83cbfb037c4138f0840d
parent 27b380ac08c7d4b79d823982663761d174260dbf
Author: matt <m.fehrenbach@pm.me>
Date:   Mon, 10 Aug 2020 22:32:04 +0100

Edited Build stage and removed Test stage
Diffstat:
MJenkinsfile | 12+++++-------
1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile @@ -1,21 +1,18 @@ pipeline { agent any - stages { stage('Build') { steps { echo 'Building..' + archiveArtifacts(artifacts: 'index.html,assets,images', excludes: 'Jenkinsfile', fingerprint: true) } } - stage('Test') { - steps { - echo 'Testing..' - } - } + stage('Deploy') { steps { echo 'Deploying....' } } + } -} +}+ \ No newline at end of file