Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2024-03-17 22:54:28 +1100
committerKae <80987908+Novaenia@users.noreply.github.com>2024-03-17 22:54:28 +1100
commitb648214e3ca71a0224ce66cd4e8053987fe991c6 (patch)
tree47e8a5cdfcc0dcc6b52ef32ae8300cce75e1e516 /.github
parent21a4f9a6244db54d11fc7dd5463acd69f3ce5f6f (diff)
Improve Windows artifacts
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_windows.yml20
1 files changed, 16 insertions, 4 deletions
diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml
index 37cfb46..88c7ff6 100644
--- a/.github/workflows/build_windows.yml
+++ b/.github/workflows/build_windows.yml
@@ -55,15 +55,27 @@ jobs:
working-directory: ${{ github.workspace }}
run: scripts\ci\windows\post_build.bat
+ - name: Assemble Files
+ working-directory: ${{ github.workspace }}
+ run: scripts\ci\windows\assemble.bat
+
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
- name: OpenStarbound-Dev-Windows-x64
+ name: OpenStarbound-Windows
path: dist/*
- - name: Assemble Install Files
- working-directory: ${{ github.workspace }}
- run: scripts\ci\windows\assemble.bat
+ - name: Upload Client
+ uses: actions/upload-artifact@v4
+ with:
+ name: OpenStarbound-Windows-Client
+ path: client_distribution/*
+
+ - name: Upload Server
+ uses: actions/upload-artifact@v4
+ with:
+ name: OpenStarbound-Windows-Server
+ path: server_distribution/*
- name: Create Installer
working-directory: ${{ github.workspace }}