Removes deploying to web server from this project

This commit is contained in:
zontreck 2024-07-20 20:38:58 -07:00
parent a1f0173c92
commit 1d28bb4ef5
2 changed files with 4 additions and 12 deletions

14
Jenkinsfile vendored
View file

@ -33,20 +33,12 @@ pipeline {
stage('Deploy') {
steps {
sh 'flutter pub publish -f --skip-validation'
sh 'git clone git@github.com:ariascreations/ServerCode'
sh 'rsync -a --progress -h --delete doc/api/ ServerCode/api.zontreck.com/dartdocs/libac/'
dir('ServerCode') {
sh 'git add --all .'
sh 'git commit -m "[BOT] Publish LibAC DartDocs"'
sh 'git push --all'
}
sh 'rm -rf ServerCode'
}
}
stage('Delete Workspace') {
steps {
// Delete the workspace directory
post {
always {
archiveArtifacts artifacts: "*.tgz", fingerprint: true
deleteDir()
}
}

View file

@ -1,6 +1,6 @@
name: libac_dart
description: "Aria's Creations code library"
version: 1.2.071224+2127
version: 1.2.072024+2035
homepage: "https://zontreck.com"