Skip to content

Commit aeb96b8

Browse files
author
Petr Sramek
committed
use bash shell
1 parent d516bd3 commit aeb96b8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/actions/build/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ inputs:
4242
required: false
4343
default: 'build'
4444

45-
runs:
45+
runs:
4646
using: "composite"
4747
steps:
4848
- uses: actions/checkout@v4
@@ -51,17 +51,17 @@ runs:
5151
uses: actions/setup-dotnet@v4
5252
with:
5353
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
5757
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 }}
5858

5959
- name: 'Upload build artifacts'
6060
if: ${{ inputs.upload-build-artifacts == 'true' }}
6161
uses: actions/upload-artifact@v4
6262
with:
6363
name: ${{ inputs.build-artifacts-name }}
64-
path: inputs.build-artifacts-glob-pattern
64+
path: ${{ inputs.build-artifacts-glob-pattern }}
6565

6666

6767

0 commit comments

Comments
 (0)