Skip to content

Commit

Permalink
pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwoulfe committed Nov 14, 2022
1 parent b745213 commit 1c0f7d8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 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:
- v11/dev
- main
tags:
include:
- refs/tags/release-*
Expand All @@ -18,10 +18,10 @@ parameters:
default: false

variables:
SOLUTION: Umbraco.Workflow.sln
SOLUTION: Clip.sln
CONFIGURATION: Release
NODE_VERSION: 16.x
DOTNET_VERSION: 7.x
DOTNET_VERSION: 6.x
DOTNET_PREVIEW: true
DOTNET_NOLOGO: true
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
Expand All @@ -36,7 +36,7 @@ stages:
jobs:
- job: Build
pool:
vmImage: ubuntu-latest
vmImage: windows-latest
steps:
- task: NodeTool@0
displayName: Use Node.js $(NODE_VERSION)
Expand Down Expand Up @@ -98,7 +98,7 @@ stages:
displayName: NPM install
inputs:
command: install
workingDir: './src/Umbraco.Workflow.Backoffice'
workingDir: './src/Clip/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/Umbraco.Workflow.Backoffice'
workingDir: './src/Clip/Backoffice'
customCommand: 'run prod'

- script: dotnet build $(SOLUTION) --configuration $(CONFIGURATION) --no-restore -p:ContinuousIntegrationBuild=true
Expand Down

0 comments on commit 1c0f7d8

Please sign in to comment.