Skip to content

修改README

修改README #22

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "master","dev" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Download TMODL
run: |
Invoke-WebRequest -Uri "https://github.com/tModLoader/tModLoader/releases/latest/download/tModLoader.zip" -OutFile "tModLoader.zip"
Expand-Archive -Path "tModLoader.zip" -DestinationPath "tModLoader"
- name: Build
shell: bash
run: |
ModloaderDir=$(pwd)/local/ModLoader
echo ModloaderDir: $ModloaderDir
mkdir -p artifacts/Mods
mkdir -p $ModloaderDir
export ExtraBuildModFlags="-tmlsavedirectory \"$(cygpath -w $ModloaderDir)\""
echo ExtraBuildModFlags: $ExtraBuildModFlags
dotnet build CaiBotMod/CaiBotMod.csproj --nologo
cp -r $ModloaderDir/Mods/. artifacts/Mods/
- name: Upload MOD
uses: actions/upload-artifact@v4
with:
name: CaiBotMod
path: |
./artifacts/Mods/CaiBotMod.tmod