Update workflows
This commit is contained in:
parent
c515d33f90
commit
9249ca3f89
2 changed files with 12 additions and 12 deletions
|
|
@ -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
|
||||||
|
|
@ -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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue