Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwoulfe committed Nov 14, 2022
1 parent fcaadc8 commit b745213
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Clip.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
azure-pipelines.yml = azure-pipelines.yml
Directory.Build.Props = Directory.Build.Props
Directory.Build.props = Directory.Build.props
LICENSE.md = LICENSE.md
localbuild.ps1 = localbuild.ps1
README.md = README.md
Expand Down
14 changes: 7 additions & 7 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ trigger:
batch: true
branches:
include:
- main
- v11/dev
tags:
include:
- refs/tags/release-*
Expand All @@ -18,10 +18,10 @@ parameters:
default: false

variables:
SOLUTION: Clip.sln
SOLUTION: Umbraco.Workflow.sln
CONFIGURATION: Release
NODE_VERSION: 16.x
DOTNET_VERSION: 6.x
DOTNET_VERSION: 7.x
DOTNET_PREVIEW: true
DOTNET_NOLOGO: true
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
Expand Down Expand Up @@ -98,7 +98,7 @@ stages:
displayName: NPM install
inputs:
command: install
workingDir: './src/Clip/Backoffice'
workingDir: './src/Umbraco.Workflow.Backoffice'

- script: dotnet restore $(SOLUTION)
condition: or(not(${{ parameters.cache_nuget }}), ne(variables.CACHE_NUGET_RESTORED, true))
Expand All @@ -108,7 +108,7 @@ stages:
displayName: Build Backoffice
inputs:
command: custom
workingDir: './src/Clip/.Backoffice'
workingDir: './src/Umbraco.Workflow.Backoffice'
customCommand: 'run prod'

- script: dotnet build $(SOLUTION) --configuration $(CONFIGURATION) --no-restore -p:ContinuousIntegrationBuild=true
Expand All @@ -127,5 +127,5 @@ stages:
displayName: Publish build output
inputs:
targetPath: $(Build.SourcesDirectory)
artifactName: build_output

artifactName: build_output

0 comments on commit b745213

Please sign in to comment.