Update workflows
All checks were successful
Server Build / publish (push) Successful in 37s
Voice Build / publish (push) Successful in 25s

This commit is contained in:
olcxja 2026-05-09 11:59:10 +02:00
commit 9249ca3f89
2 changed files with 12 additions and 12 deletions

View file

@ -1,4 +1,4 @@
name: Server AOT Publish
name: Server Build
on:
push:
@ -12,13 +12,13 @@ jobs:
runs-on: dotnet
steps:
- name: Checkout code
- name: Checkout
uses: actions/checkout@v4
- name: Restore dependencies
- name: Dotnet Restore
run: dotnet restore
- name: Publish Native AOT
- name: Build Native
run: |
dotnet publish ./LarpixServer/LarpixServer.csproj \
-c Release \
@ -33,5 +33,5 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: native-binary
path: ./publish/
name: LarpixServer
path: ./publish/LarpixServer

View file

@ -1,4 +1,4 @@
name: Server AOT Publish
name: Voice Build
on:
push:
@ -12,13 +12,13 @@ jobs:
runs-on: dotnet
steps:
- name: Checkout code
- name: Checkout
uses: actions/checkout@v4
- name: Restore dependencies
- name: Dotnet Restore
run: dotnet restore
- name: Publish Native AOT
- name: Build Native
run: |
dotnet publish ./LarpixVoice/LarpixVoice.csproj \
-c Release \
@ -33,5 +33,5 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: native-binary
path: ./publish/
name: LarpixVoice
path: ./publish/LarpixVoice