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

View file

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