Skip to content

Commit 4f00a8f

Browse files
author
Petr Sramek
committed
fux
1 parent 3507d0f commit 4f00a8f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/dotnet.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ concurrency: ${{ github.ref }}
1313

1414
jobs:
1515
build:
16-
name: Build with .NET ${{ DOTNET_VERSION }}
16+
name: Build with .NET $DOTNET_VERSION
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v3
20-
- name: Install .NET ${{ DOTNET_VERSION }}
20+
- name: Install .NET $DOTNET_VERSION
2121
uses: actions/setup-dotnet@v4
2222
with:
2323
dotnet-version: $DOTNET_VERSION
@@ -32,12 +32,12 @@ jobs:
3232
**/obj/*
3333
3434
test:
35-
name: Test with .NET ${{ DOTNET_VERSION }}
35+
name: Test with .NET $DOTNET_VERSION
3636
needs: [build]
3737
runs-on: ubuntu-latest
3838
steps:
3939
- uses: actions/checkout@v3
40-
- name: Setup .NET ${{ DOTNET_VERSION }}
40+
- name: Setup .NET $DOTNET_VERSION
4141
uses: actions/setup-dotnet@v4
4242
with:
4343
dotnet-version: $DOTNET_VERSION
@@ -51,12 +51,12 @@ jobs:
5151
**/test-results/*
5252
5353
pack:
54-
name: Pack with .NET ${{ DOTNET_VERSION }}
54+
name: Pack with .NET $DOTNET_VERSION
5555
needs: [test]
5656
runs-on: ubuntu-latest
5757
steps:
5858
- uses: actions/checkout@v3
59-
- name: Install .NET ${{ DOTNET_VERSION }}
59+
- name: Install .NET $DOTNET_VERSION
6060
uses: actions/setup-dotnet@v4
6161
with:
6262
dotnet-version: $DOTNET_VERSION

0 commit comments

Comments
 (0)