SpookTubeEX/.github/workflows/build.yml
2024-06-15 12:05:13 +10:00

27 lines
742 B
YAML

name: Build SpookTubeEX
run-name: ${{ github.actor }} started a deployment
on: [push]
jobs:
compile:
name: Build
runs-on: ubuntu-latest
steps:
- name: Clone the repo
uses: actions/checkout@v4
- name: Copy Game Assemblies (Totally Legal)
run: cp -r /cw/* ${{ github.workspace }}/lib
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.203"
- name: Restore Solution
run: dotnet restore
- name: Build Solution
run: dotnet build -c release
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: SpookTubeEX
path: |
${{ github.workspace }}/bin/Release/net472/com.redbigz.SpookTubeEX.dll