Skip to content

Commit

Permalink
Correct liquid
Browse files Browse the repository at this point in the history
  • Loading branch information
soroshsabz committed Aug 3, 2023
1 parent 8c98dc8 commit 94adbcc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ jobs:
- name: Install dependencies
run: dotnet restore

# - name: Build with Cake
# uses: cake-build/cake-action@v1
# with:
# target: JustBuild
# script-path: Build/linux-build.cake
# verbosity: Diagnostic
# arguments: |
# version: ${{ env.PRODUCT_VERSION }}
- name: Build with Cake
uses: cake-build/cake-action@v1
with:
target: JustBuild
script-path: Build/linux-build.cake
verbosity: Diagnostic
arguments: |
projectVersion: ${{ env.PRODUCT_VERSION }}
- name: Build
id: build
Expand Down Expand Up @@ -96,14 +96,14 @@ jobs:
fi
# run tests with built project
# - name: Test with Cake
# uses: cake-build/cake-action@v1
# with:
# target: JustTest
# script-path: Build/linux-build.cake
# verbosity: Diagnostic
# arguments: |
# version: ${{ env.PRODUCT_VERSION }}
- name: Test with Cake
uses: cake-build/cake-action@v1
with:
target: JustTest
script-path: Build/linux-build.cake
verbosity: Diagnostic
arguments: |
projectVersion: ${{ env.PRODUCT_VERSION }}
- name: Test
run: |
Expand Down
2 changes: 1 addition & 1 deletion Build/build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
var target = Argument("target", "Default");
var profile = Argument("profile", IsRunningOnWindows() ? "dotnetFramework" : "dotnetcore");
var targetPlatform = Argument("targetPlatform", "windowsservercore-20H2");
var version = Argument("version", "1.1.0");
var version = Argument("projectVersion", "1.1.0");
var dockerRegistry = Argument("dockerRegistry", "harbor.resaa.net/mci/");

// TODO: .Net Framework projects failed with Release configuration, so default configuration for .Net Framework is Debug,
Expand Down

0 comments on commit 94adbcc

Please sign in to comment.