File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ inputs:
42
42
required : false
43
43
default : ' build'
44
44
45
- runs :
45
+ runs :
46
46
using : " composite"
47
47
steps :
48
48
- uses : actions/checkout@v4
@@ -51,17 +51,17 @@ runs:
51
51
uses : actions/setup-dotnet@v4
52
52
with :
53
53
dotnet-version : ${{ inputs.dotnet_sdk_version }}
54
-
55
- - name : ' Build with dotnet CLI'
56
- shell : cmd
54
+
55
+ - name : ' Build with .NET CLI'
56
+ shell : bash
57
57
run : dotnet build ${{ inputs.search-pattern }} --configuration ${{ inputs.build-configuration }} /p:Platform=${{ inputs.build-platform }} /p:Version=${{ inputs.assembly-version }} /p:AssemblyInformationalVersion=${{ inputs.assembly--informational-version }} /p:FileVersion=${{ inputs.assembly-file-version }}
58
58
59
59
- name : ' Upload build artifacts'
60
60
if : ${{ inputs.upload-build-artifacts == 'true' }}
61
61
uses : actions/upload-artifact@v4
62
62
with :
63
63
name : ${{ inputs.build-artifacts-name }}
64
- path : inputs.build-artifacts-glob-pattern
64
+ path : ${{ inputs.build-artifacts-glob-pattern }}
65
65
66
66
67
67
You can’t perform that action at this time.
0 commit comments