Bot Updating Templated Files

This commit is contained in:
LinuxServer-CI 2025-02-11 03:47:16 +00:00
parent 5cc9c9abeb
commit 30074b4e8b
No known key found for this signature in database
1 changed files with 6 additions and 2 deletions

8
Jenkinsfile vendored
View File

@ -70,7 +70,9 @@ pipeline {
fi
done
fi
docker system prune -f --volumes || : '''
docker system prune -f --volumes || :
docker image prune -af || :
'''
script{
env.EXIT_STATUS = ''
env.LS_RELEASE = sh(
@ -749,7 +751,8 @@ pipeline {
if [[ -n "${containers}" ]]; then
docker stop ${containers}
fi
docker system prune -af --volumes || :
docker system prune -f --volumes || :
docker image prune -af || :
'''
}
}
@ -1175,6 +1178,7 @@ EOF
done
fi
docker system prune -f --volumes || :
docker image prune -af || :
'''
cleanWs()
}