We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bd2eb0 commit 92206e8Copy full SHA for 92206e8
.github/workflows/dotnet-build.yml
@@ -12,10 +12,10 @@ jobs:
12
runs-on: ubuntu-latest
13
14
steps:
15
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
16
17
- name: Setup .NET
18
- uses: actions/setup-dotnet@v3
+ uses: actions/setup-dotnet@v4
19
with:
20
dotnet-version: '8.0.x' # Update this to match your project's .NET version
21
@@ -24,10 +24,3 @@ jobs:
24
25
- name: Build
26
run: dotnet build --configuration Release --no-restore
27
-
28
- # Optional: Upload build artifacts
29
- - name: Upload build artifacts
30
- uses: actions/upload-artifact@v3
31
- with:
32
- name: build-output
33
- path: '**/bin/Release/**/*' # Adjust this path as needed for your project structure
0 commit comments