Skip to content

Commit 8362b40

Browse files
committed
Add obj directory to build artifact paths and update .NET setup for pack and test jobs
1 parent 6438c9d commit 8362b40

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ jobs:
5353
name: build-output
5454
path: |
5555
src\**\bin\Release\**
56+
src\**\obj\**
5657
test\**\bin\Release\**
58+
test\**\obj\**
5759
retention-days: 1
5860

5961
pack:
@@ -72,6 +74,13 @@ jobs:
7274
steps:
7375
- uses: actions/checkout@v4
7476

77+
- name: Setup .NET
78+
uses: actions/setup-dotnet@v4
79+
with:
80+
dotnet-version: |
81+
8.0.x
82+
10.0.x
83+
7584
- name: Download build artifacts
7685
uses: actions/download-artifact@v4
7786
with:
@@ -105,6 +114,13 @@ jobs:
105114
steps:
106115
- uses: actions/checkout@v4
107116

117+
- name: Setup .NET
118+
uses: actions/setup-dotnet@v4
119+
with:
120+
dotnet-version: |
121+
8.0.x
122+
10.0.x
123+
108124
- name: Download build artifacts
109125
uses: actions/download-artifact@v4
110126
with:

0 commit comments

Comments
 (0)