From 6eda12b6f073c99b707bdd49bdf5850f6bda4df9 Mon Sep 17 00:00:00 2001 From: Andreas Fahrecker Date: Wed, 10 Apr 2024 05:54:49 +0200 Subject: [PATCH] Fix Commit Instead of stash --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 92a6611..8cae61d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,7 +24,8 @@ pipeline { git checkout -b build-${BUILD_NUMBER} mkdir -p dist npm run compile - git stash + git add . + git commit -m "Update Compiled Adblock List" ''' } }