diff --git a/Jenkinsfile b/Jenkinsfile index 015540e..26e5a4a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,16 +4,22 @@ pipeline { dotnetsdk 'dotnet6' } stages { - stage('Build') { + stage('build franz') { steps { - echo 'Building..' + echo 'building franz' sh 'dotnet pack franz/franz.csproj --configuration Release --output ./' } } - stage('Deploy') { + stage('deploy franz') { steps { sh 'dotnet nuget push ./*.nupkg --source gitea --skip-duplicate' } } + stage('build lister') { + steps { + echo 'franz' + sh 'dotnet publish topiclister/topiclister.csproj --configuration Release --output ./topiclister' + } + } } } \ No newline at end of file