Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
volllly committed Nov 9, 2023
1 parent aa71fb5 commit 870c2d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions azure-pipelines/templates/deb/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ stages:
signCertPassword: '$(Code_Signing_Password)'
filePaths: |
./src/**/fiskaltrust.Launcher.dll
./src/**/*fiskaltrust*.exe
./src/**/fiskaltrust.Launcher
./src/**/fiskaltrust.LauncherUpdater
- pwsh: |
$meta = Get-Content ./meta.json -Encoding UTF8 | ConvertFrom-Json
Expand Down
8 changes: 5 additions & 3 deletions azure-pipelines/templates/stages/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ stages:
- pwsh: |
mv ./Directory.build.props ./Directory.Build.props
dotnet publish ./src/${{ project }}/${{ project }}.csproj -c ${{ parameters.config }} -o $(Build.ArtifactStagingDirectory)/drop-$(target) -r $(target) -f net6.0 --self-contained true /p:EnableCompressionInSingleFile=true /p:DebugType=None /p:DebugSymbols=false /p:GenerateRuntimeConfigurationFiles=false -p:PublishSingleFile=true -p:PublishReadyToRun=true
displayName: Publish
displayName: "[${{ project }}] Publish"
- task: codesigning@2
displayName: 'Code Signing'
Expand All @@ -56,8 +57,9 @@ stages:
signCertPassword: '$(Code_Signing_Password)'
filePaths: |
./src/**/fiskaltrust.Launcher.dll
./src/**/fiskaltrust.Launcher.exe
./src/**/*fiskaltrust*.exe
./src/**/fiskaltrust.Launcher
./src/**/fiskaltrust.LauncherUpdater
- publish: $(Build.ArtifactStagingDirectory)/drop-$(target)
artifact: drop-$(target)
Expand All @@ -70,7 +72,7 @@ stages:
- ${{ each project in parameters.projects }}:
- pwsh: |
Move-Item -Path $(Build.ArtifactStagingDirectory)/drop-$(target)/${{ project }}* -Destination $(Build.ArtifactStagingDirectory)/raw-$(target)/
displayName: Copy executables
displayName: "[${{ project }}] Copy executables"
- pwsh: |
Expand Down

0 comments on commit 870c2d5

Please sign in to comment.