Skip to content

Commit

Permalink
Fix Actions Workflow (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
RedBigz committed Nov 27, 2024
1 parent 9dcb878 commit 7c80149
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
mkdir GameReferences
cp Template/TABGVR/core/* GameReferences # works well enough
- name: Build TABGVR (Client)
working-directory: "./TABGVR"
run: dotnet build -c release -p:TABGManaged=$(pwd)/../Managed
- name: Copy Binary to Client Template
run: cp ./TABGVR/bin/Release/netstandard2.1/TABGVR.dll Template/TABGVR/plugins
Expand All @@ -37,16 +36,14 @@ jobs:
name: TABGVR
path: "./Template/*"
- name: Build TABGVR.Server (CitrusLib)
working-directory: "./TABGVR.Server"
run: dotnet build -c release -p:TABGManaged=$(pwd)/../Managed -p:PluginTarget="Citrus"
run: dotnet build -c release -p:TABGManaged=$(pwd)/../Managed -p:PluginTarget="Citrus" ./TABGVR.Server
- name: Upload TABGVR.Server (CitrusLib)
uses: actions/upload-artifact@v4
with:
name: TABGVR.Server (CitrusLib)
path: "./TABGVR.Server/bin/Release/netstandard2.1/TABGVR.Server.dll"
- name: Build TABGVR.Server (TASM)
working-directory: "./TABGVR.Server"
run: dotnet build -c release -p:TABGManaged=$(pwd)/../Managed -p:PluginTarget="TASM"
run: dotnet build -c release -p:TABGManaged=$(pwd)/../Managed -p:PluginTarget="TASM" ./TABGVR.Server
- name: Upload TABGVR.Server (CitrusLib)
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 7c80149

Please sign in to comment.