File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,15 @@ runs:
24
24
NUGET_AUTH_TOKEN : ${{ inputs.nugetToken }}
25
25
26
26
- name : Restore dependencies
27
+ shell : pwsh
27
28
run : dotnet restore ${{ inputs.solution }}
28
29
29
30
- name : Build
31
+ shell : pwsh
30
32
run : dotnet build ${{ inputs.solution }} --configuration ${{ inputs.buildConfiguration }} --no-restore -p:Platform="Any CPU" -p:TreatWarningsAsErrors=True
31
33
32
34
- name : Test
35
+ shell : pwsh
33
36
run : dotnet test ${{ inputs.solution }} --configuration ${{ inputs.buildConfiguration }} --no-build --verbosity detailed --blame-crash
34
37
35
38
- name : Upload Screenshots
Original file line number Diff line number Diff line change 20
20
using : " composite"
21
21
steps :
22
22
- name : Build NuGets
23
+ shell : pwsh
23
24
run : .\Scripts\BuildNugets.ps1 -MDIXVersion ${{ inputs.mdixVersion }} -MDIXMahAppsVersion ${{ inputs.mdixMahAppsVersion }} -MDIXColorsVersion ${{ inputs.mdixColorsVersion }}
24
25
25
26
- name : Upload NuGets
35
36
path : " ${{ inputs.demoAppPath }}"
36
37
37
38
- name : Publish to NuGet.org
39
+ shell : pwsh
38
40
run : dotnet nuget push ${{ github.workspace }}\*.nupkg --source https://api.nuget.org/v3/index.json -k ${{ inputs.nugetKey }} --skip-duplicate
You can’t perform that action at this time.
0 commit comments