Skip to content

Commit

Permalink
style(dotnet): set consistent step names (#629)
Browse files Browse the repository at this point in the history
Consistenly write `.NET` instead of `Dotnet` in step names.
  • Loading branch information
hknutsen authored Jan 8, 2025
1 parent b1328aa commit 151b117
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ jobs:
run: npm install -g "npm@$NPM_VERSION"

# Restore dependencies for the application and runtime.
- name: Dotnet restore
- name: .NET Restore
run: dotnet restore "$PROJECT" --runtime "$RUNTIME"

# Build the application for release/deployment.
- name: Dotnet build
- name: .NET Build
run: dotnet build "$PROJECT" --configuration "$CONFIGURATION" --runtime "$RUNTIME" --self-contained "$SELF_CONTAINED" --no-restore

# Execute unit tests.
- name: Dotnet test
- name: .NET Test
if: inputs.test_project != ''
env:
PROJECT: ${{ inputs.test_project }}
Expand All @@ -122,7 +122,7 @@ jobs:
done <<< "$PROJECT"
# Publish the application and its dependencies to a folder for deployment.
- name: Dotnet publish
- name: .NET Publish
id: publish
env:
OUTPUT: ${{ runner.temp }}/${{ inputs.artifact_name }}
Expand Down

0 comments on commit 151b117

Please sign in to comment.