ci: remove shell type for build step

This commit is contained in:
Andrew Welker
2023-02-03 16:53:18 -07:00
parent f7c2cc3c2b
commit 7d8b479edc
2 changed files with 2 additions and 119 deletions

View File

@@ -41,10 +41,8 @@ jobs:
env:
SOLUTION_FILE: PepperDash Core 4-Series.sln
# Build the solutions in the docker image
- name: Build Solution
shell: powershell
run: |
msbuild "./$($Env:SOLUTION_PATH)/$($Env:SOLUTION_FILE) 4-Series.sln" -p:Platform="Any CPU" -p:Configuration="Debug -p:VersionPrefix=$(steps.setVersion.outputs.version)"
- name: Build Solution
run: msbuild "./$($Env:SOLUTION_PATH)/$($Env:SOLUTION_FILE) 4-Series.sln" -p:Platform="Any CPU" -p:Configuration="Debug -p:VersionPrefix=$(steps.setVersion.outputs.version)"
- name: Create tag for non-rc builds
if: contains(env.VERSION, 'alpha') || contains(env.VERSION, 'beta')
run: |