Try to fix CI unsupported on this platform error #205
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NOTE: Releases are not created in this repository! | |
# DLL builds are compiled/published as part of the releases for each game - please see each game's individual repository. | |
name: Build DLL | |
# Run this workflow on every push or pull request | |
on: | |
push: | |
pull_request: | |
jobs: | |
build_dll: | |
name: Build DLL | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
# Note: This uses the mono bundled with Ubuntu to build the project | |
- name: Compile Mod DLL | |
run: msbuild /p:Configuration=Release | |
- name: Compile standalone Higurashi Script Compiler | |
run: msbuild /p:Configuration=ScriptCompiler |