Skip to content

Commit 61db9fc

Browse files
committed
fix: workflows
1 parent b5023ab commit 61db9fc

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/dotnet-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
run: dotnet restore
2626

2727
- name: Build
28-
run: dotnet build --no-restore --configuration Release
28+
run: dotnet build ./Parameterize.Net --no-restore --configuration Release
2929

3030
- name: Run tests
31-
run: dotnet test --no-build --verbosity normal
31+
run: dotnet test ./Parameterize.Net --no-build --verbosity normal
3232

3333
- name: Upload test results
3434
uses: actions/upload-artifact@v4

.github/workflows/nuget-pub.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ on:
44
push:
55
tags:
66
- 'v*' # triggers on tags like v1.0.0
7-
defaults:
8-
run:
9-
working-directory: Parmaeterize.Net/
7+
108
jobs:
119
publish:
1210
runs-on: ubuntu-latest
@@ -24,7 +22,7 @@ jobs:
2422
run: dotnet restore
2523

2624
- name: Build
27-
run: dotnet build --configuration Release --no-restore
25+
run: dotnet build ./Parameterize.Net --configuration Release --no-restore
2826

2927
- name: Pack
3028
run: dotnet pack ./Parameterize.Net/Parameterize.Net.csproj --configuration Release --no-build -o ./nupkg

0 commit comments

Comments
 (0)