Skip to content

Commit f7d3269

Browse files
committed
Fixed typo
1 parent 355ea73 commit f7d3269

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ jobs:
3939
dotnet-version: 6.0.x
4040
include-prerelease: True
4141
- name: Install dependencies
42-
run: dotnet restore EntityFrameworkCore.Triggered.sln -p:Configuration={{ matrix.configuration }}
42+
run: dotnet restore EntityFrameworkCore.Triggered.sln -p:Configuration=${{ matrix.configuration }}
4343
- name: Build
44-
run: dotnet build --configuration {{ matrix.configuration }} --no-restore EntityFrameworkCore.Triggered.sln
44+
run: dotnet build --configuration ${{ matrix.configuration }} --no-restore EntityFrameworkCore.Triggered.sln
4545
- name: Test
46-
run: dotnet test --configuration {{ matrix.configuration }} --verbosity normal EntityFrameworkCore.Triggered.sln
46+
run: dotnet test --configuration ${{ matrix.configuration }} --verbosity normal EntityFrameworkCore.Triggered.sln
4747
- name: Pack
4848
if: matrix.os == 'ubuntu-latest'
4949
run: |
50-
dotnet pack -v normal --configuration {{ matrix.configuration }} --include-symbols --include-source -p:PackageVersion=v{{ matrix.version }}-pre-$GITHUB_RUN_ID -o nupkg EntityFrameworkCore.Triggered.Core.slnf
50+
dotnet pack -v normal --configuration ${{ matrix.configuration }} --include-symbols --include-source -p:PackageVersion=v${{ matrix.version }}-pre-$GITHUB_RUN_ID -o nupkg EntityFrameworkCore.Triggered.Core.slnf
5151
- name: Upload Artifact
5252
if: matrix.os == 'ubuntu-latest'
5353
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)