Files
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

46 lines
2.0 KiB
YAML

steps:
# SharePoint Deployments
- task: razorspoint.rp-build-release-pnptasks.RP-PnPPowerShell.PnPPowerShell@3
displayName: 'Deploy Artifact: c-entron.NET Installer (SharePoint)'
condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true'))
continueOnError: true
inputs:
SharePointVersion: SpOnline
sharepointConntection: 'Software Builds - SharePoint'
FileOrInline: Inline
RequiredVersion: '3.23.2007.1'
PnPPowerShellInline: |
$versionTemp = [Version]"$(version)"
$mainVersion = $versionTemp.ToString(3)
$file = Add-PnpFile -Folder "/Shared Documents/c-entron.NET/v$mainVersion/v$versionTemp" -Path "artifacts\c-entron.NET Installer.zip"
- task: razorspoint.rp-build-release-pnptasks.RP-PnPPowerShell.PnPPowerShell@3
displayName: 'Deploy Artifact: c-entron Web-Service Installer (SharePoint)'
condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true'))
continueOnError: true
inputs:
SharePointVersion: SpOnline
sharepointConntection: 'Software Builds - SharePoint'
FileOrInline: Inline
RequiredVersion: '3.23.2007.1'
PnPPowerShellInline: |
$versionTemp = [Version]"$(version)"
$mainVersion = $versionTemp.ToString(3)
$file = Add-PnpFile -Folder "/Shared Documents/c-entron Web-Service/v$mainVersion/v$versionTemp" -Path "artifacts\c-entron Web-Service Installer.zip"
- task: razorspoint.rp-build-release-pnptasks.RP-PnPPowerShell.PnPPowerShell@3
condition: and(succeeded(), eq(variables['set_upload_flag.ShouldUpload'], 'true'))
displayName: 'Upload Artifact to SharePoint: c-entron Nexus'
continueOnError: true
inputs:
SharePointVersion: SpOnline
sharepointConntection: 'Software Builds - SharePoint'
FileOrInline: Inline
RequiredVersion: '3.23.2007.1'
PnPPowerShellInline: |
$versionTemp = [Version]"$(version)"
$mainVersion = $versionTemp.ToString(3)
$file = Add-PnpFile -Folder "/Shared Documents/c-entron Nexus/v$mainVersion/v$versionTemp" -Path "artifacts\c-entron Nexus Installer.zip"