Skip to content

Commit 001dfaf

Browse files
authored
Update msbuild.yml
1 parent b4a90b1 commit 001dfaf

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

.github/workflows/msbuild.yml

+6-10
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,10 @@ jobs:
3838
# Add additional options to the MSBuild command line here (like platform or verbosity level).
3939
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
4040
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
41-
42-
- name: Upload a Build Artifact
43-
uses: actions/upload-artifact@v4.3.4
41+
42+
- name: Create Release
43+
uses: ncipollo/release-action@v1.14.0
4444
with:
45-
# Artifact name
46-
name: networking-fix.dll
47-
# A file, directory or wildcard pattern that describes what to upload
48-
path: x64/Release/NetworkingFix.dll
49-
# The desired behavior if no files are found using the provided path.
50-
overwrite: true
51-
45+
artifacts: x64/Release/NetworkingFix.dll
46+
draft: true
47+
makeLatest: true

0 commit comments

Comments
 (0)