Files
Masterarbeit/QuellCode/CentronERP/azure/build-templates/deploy-artifacts-nuget.yaml
T
Christoph Schwörer f045b99a25 Codebasis als Dateien ins Arbeitsrepo statt als Gitlink
QuellCode/CentronERP war nur als Gitlink (Submodul-Referenz auf 79c1142)
getrackt, ohne .gitmodules und ohne erreichbares Remote. Der
Untersuchungsgegenstand der Versuchsreihe war damit nicht reproduzierbar
gesichert: Ein Klon haette ein leeres Verzeichnis erhalten, und die Belege
der 3.287 Anforderungen waeren nicht ueberpruefbar gewesen.

Umstellung:
- Historie nach c:\DEV\CentronERP_git_snapshot_79c1142 ausgelagert
  (vollstaendig lesbar, enthaelt 79c1142 und Vorgaenger 89ccfd6)
- Gitlink aus dem Index entfernt
- Dateiinhalt aufgenommen: 24.557 Dateien, rund 333 MB

Die verschachtelte .gitignore der Codebasis gilt weiter, Build-Artefakte
bleiben ausgeschlossen. Details in Versuche/Versuch_01/_Codebasis-Nachweis.md
2026-08-26 07:43:51 +02:00

47 lines
1.7 KiB
YAML

# Template for deploying artifacts to NuGet, Azure Pipelines, and SharePoint
steps:
# NuGet Package Deployments
- task: NuGetCommand@2
condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true'))
displayName: 'Deploy Artifact: Centron.WebServices.Core Nuget Package (NuGet)'
continueOnError: true
inputs:
command: push
nuGetFeedType: external
publishFeedCredentials: 'c-entron NuGet Server'
allowPackageConflicts: true
packagesToPush: 'artifacts/nuget/Centron.WebServices.Core.*.nupkg'
- task: NuGetCommand@2
condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true'))
displayName: 'Deploy Artifact: Centron.Interfaces Nuget Package (NuGet)'
continueOnError: true
inputs:
command: push
nuGetFeedType: external
publishFeedCredentials: 'c-entron NuGet Server'
allowPackageConflicts: true
packagesToPush: 'artifacts/nuget/Centron.Interfaces.*.nupkg'
- task: NuGetCommand@2
condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true'))
displayName: 'Deploy Artifact: Centron.Core Nuget Package (NuGet)'
continueOnError: true
inputs:
command: push
nuGetFeedType: external
publishFeedCredentials: 'c-entron NuGet Server'
allowPackageConflicts: true
packagesToPush: 'artifacts/nuget/Centron.Core.*.nupkg'
- task: NuGetCommand@2
condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true'))
displayName: 'Deploy Artifact: Centron.Controls Nuget Package (NuGet)'
continueOnError: true
inputs:
command: push
nuGetFeedType: external
publishFeedCredentials: 'c-entron NuGet Server'
allowPackageConflicts: true
packagesToPush: 'artifacts/nuget/Centron.Controls.*.nupkg'