Skip to content

Commit 3653436

Browse files
committed
Adding in missing shell property
1 parent 0bc05f1 commit 3653436

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/actions/build-and-test/action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,15 @@ runs:
2424
NUGET_AUTH_TOKEN: ${{ inputs.nugetToken }}
2525

2626
- name: Restore dependencies
27+
shell: pwsh
2728
run: dotnet restore ${{ inputs.solution }}
2829

2930
- name: Build
31+
shell: pwsh
3032
run: dotnet build ${{ inputs.solution }} --configuration ${{ inputs.buildConfiguration }} --no-restore -p:Platform="Any CPU" -p:TreatWarningsAsErrors=True
3133

3234
- name: Test
35+
shell: pwsh
3336
run: dotnet test ${{ inputs.solution }} --configuration ${{ inputs.buildConfiguration }} --no-build --verbosity detailed --blame-crash
3437

3538
- name: Upload Screenshots

.github/actions/push-artifacts/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ runs:
2020
using: "composite"
2121
steps:
2222
- name: Build NuGets
23+
shell: pwsh
2324
run: .\Scripts\BuildNugets.ps1 -MDIXVersion ${{ inputs.mdixVersion }} -MDIXMahAppsVersion ${{ inputs.mdixMahAppsVersion }} -MDIXColorsVersion ${{ inputs.mdixColorsVersion }}
2425

2526
- name: Upload NuGets
@@ -35,4 +36,5 @@ runs:
3536
path: "${{ inputs.demoAppPath }}"
3637

3738
- name: Publish to NuGet.org
39+
shell: pwsh
3840
run: dotnet nuget push ${{ github.workspace }}\*.nupkg --source https://api.nuget.org/v3/index.json -k ${{ inputs.nugetKey }} --skip-duplicate

0 commit comments

Comments
 (0)