Skip to content

Commit 0f17456

Browse files
committed
Fix case in workflow
1 parent 588c2bc commit 0f17456

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
matrix:
1818
project:
1919
- name: TimeWarp.OptionsValidation
20-
path: source/TimeWarp.OptionsValidation/
21-
testPath: tests/TimeWarp.OptionsValidation.Tests/
20+
path: Source/TimeWarp.OptionsValidation/
21+
testPath: Tests/TimeWarp.OptionsValidation.Tests/
2222

2323
steps:
2424
- name: Print Job Info

.github/workflows/release-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737

3838
- name: Build TimeWarp.OptionsValidation
3939
run: |
40-
cd source/TimeWarp.OptionsValidation/
40+
cd Source/TimeWarp.OptionsValidation/
4141
dotnet build --configuration Debug
4242
4343
- name: Publish TimeWarp.OptionsValidation
4444
run: |
45-
cd source/TimeWarp.OptionsValidation/bin/Packages
45+
cd Source/TimeWarp.OptionsValidation/bin/Packages
4646
dotnet nuget push *.nupkg --skip-duplicate --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.PUBLISH_TO_NUGET_ORG }}
4747
4848
- name: Verify Directory.Build.props

0 commit comments

Comments
 (0)