We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f31c5e7 commit 6f32fb7Copy full SHA for 6f32fb7
1 file changed
.github/workflows/build.yaml
@@ -2,7 +2,7 @@ name: MSBuild
2
3
on:
4
push:
5
- branches: [ "develop", "Altserver-windows-actions" ]
+ branches: [ "develop" ]
6
pull_request:
7
branches: [ "develop" ]
8
@@ -54,9 +54,14 @@ jobs:
54
run: |
55
msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:Platform=${{env.BUILD_PLATFORM}} /p:SolutionDir="${{github.workspace}}\\" ${{env.PROJECT_FILE_PATH}}
56
57
-
58
- - name: Upload Artifact
+ - name: Upload ZIP Artifact
59
uses: actions/upload-artifact@v3.1.0
60
with:
61
- name: SideServer
+ name: SideServer (With Debug Symbols)
62
path: ${{github.workspace}}\Win32\Release
+
63
+ - name: Upload Installer Artifact
64
+ uses: actions/upload-artifact@v3.1.0
65
+ with:
66
+ name: SideServer Installer
67
+ path: ${{github.workspace}}\AltInstaller\Release
0 commit comments