Skip to content

Commit

Permalink
Fix relative paths in Actions Workflow (+ fix capitalisation)
Browse files Browse the repository at this point in the history
  • Loading branch information
RedBigz committed Nov 27, 2024
1 parent 1a890aa commit 1aab4ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,28 +27,28 @@ jobs:
mkdir GameReferences
cp Template/TABGVR/core/* GameReferences # works well enough
- name: Build TABGVR (Client)
run: dotnet build -c release -p:TABGManaged=$(pwd)/../Managed
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
- name: Upload Client Artifact
uses: actions/upload-artifact@v4
with:
name: TABGVR
path: "./Template/*"
- name: Set up TABGVR.Server build environment
- name: Set up TABGVR.Server Build Environment
run: |
mkdir ManagedDS
curl -o ./ManagedDS/Assembly-CSharp.dll https://redbigz.com/lfs/TABG/Assembly-CSharp.stripped.dll
curl -o ./ManagedDS/UnityEngine.CoreModule.dll https://redbigz.com/lfs/TABG/UnityEngine.CoreModule.dll
- name: Build TABGVR.Server (CitrusLib)
run: dotnet build -c release -p:TABGManaged=$(pwd)/../ManagedDS -p:PluginTarget="Citrus" ./TABGVR.Server
run: dotnet build -c release -p:TABGManaged=$(pwd)/ManagedDS -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)
run: dotnet build -c release -p:TABGManaged=$(pwd)/../ManagedDS -p:PluginTarget="TASM" ./TABGVR.Server
run: dotnet build -c release -p:TABGManaged=$(pwd)/ManagedDS -p:PluginTarget="TASM" ./TABGVR.Server
- name: Upload TABGVR.Server (CitrusLib)
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 1aab4ae

Please sign in to comment.