Skip to content

Commit

Permalink
Update runtime identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
Regenhardt committed Feb 20, 2024
1 parent fc04fb0 commit ec395bc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions pipelines/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ trigger:
stages:
- template: templates/stages/build.yml
parameters:
name: 'win10_x64'
runtimeIdentifier: 'win10-x64'
name: 'win_x64'
runtimeIdentifier: 'win-x64'
vmImage: 'windows-latest'
- template: templates/stages/build.yml
parameters:
Expand All @@ -25,10 +25,10 @@ stages:
- stage: 'Release'
variables:
artifactsDirectory: '$(Pipeline.Workspace)/artifacts'
win10_x64_artifactPath: '$(artifactsDirectory)/todo.$(build.buildNumber).win10-x64'
win10_x64_artifactPath: '$(artifactsDirectory)/todo.$(build.buildNumber).win-x64'
linux_x64_artifactPath: '$(artifactsDirectory)/todo.$(build.buildNumber).linux-x64'
osx_x64_artifactPath: '$(artifactsDirectory)/todo.$(build.buildNumber).osx-x64'
dependsOn: ['win10_x64', 'linux_x64', 'osx_x64']
dependsOn: ['win_x64', 'linux_x64', 'osx_x64']
jobs:
- job: 'release_job'
steps:
Expand All @@ -39,9 +39,9 @@ stages:
inputs:
targetPath: '$(artifactsDirectory)'
- task: ArchiveFiles@2
displayName: 'Create $(win10_x64_artifactPath).zip'
displayName: 'Create $(win_x64_artifactPath).zip'
inputs:
rootFolderOrFile: '$(win10_x64_artifactPath)'
rootFolderOrFile: '$(win_x64_artifactPath)'
includeRootFolder: false
archiveFile: '$(win10_x64_artifactPath).zip'
- task: ArchiveFiles@2
Expand Down
2 changes: 1 addition & 1 deletion src/Todo.CLI/Todo.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
Expand Down

0 comments on commit ec395bc

Please sign in to comment.