We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4179de commit 5a4b285Copy full SHA for 5a4b285
1 file changed
.github/workflows/ci.yml
@@ -17,17 +17,6 @@ jobs:
17
- name: Checkout Code
18
uses: actions/checkout@v3
19
20
- - name: Setup .NET
21
- uses: actions/setup-dotnet@v3
22
- with:
23
- dotnet-version: '8.0.406'
24
-
25
- - name: Restore Dependencies
26
- run: dotnet restore
27
28
- - name: Build the Project
29
- run: dotnet build --no-restore
30
31
- name: Create a test directory
32
run: |
33
mkdir -p test-artifacts
@@ -37,7 +26,7 @@ jobs:
37
run: ls -R test-artifacts # Check if the file exists
38
39
- name: Upload Test Artifact (v2)
40
- uses: actions/upload-artifact@v2 # Changed to v2 for compatibility
+ uses: actions/upload-artifact@v2 # Upload the dummy test artifact directory
41
with:
42
name: test-artifacts
43
- path: test-artifacts # Upload the dummy test artifact directory
+ path: test-artifacts
0 commit comments