We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb2a41d commit 7ef322aCopy full SHA for 7ef322a
.github/workflows/msbuild.yml
@@ -34,7 +34,13 @@ jobs:
34
35
- name: Add MSBuild to PATH
36
uses: microsoft/[email protected]
37
-
+
38
+ - name: Upload a Build Artifact
39
+ - uses: actions/upload-artifact@v4
40
+ with:
41
+ name: dll
42
+ path: D-fix\x64\Release\*.dll
43
44
- name: Restore NuGet packages
45
working-directory: ${{env.GITHUB_WORKSPACE}}
46
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
@@ -44,3 +50,4 @@ jobs:
50
# Add additional options to the MSBuild command line here (like platform or verbosity level).
51
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
52
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
53
0 commit comments