From c290e9b71c0d7cf3d5491bd264cdb843b4dc1ffb Mon Sep 17 00:00:00 2001 From: lifegpc Date: Mon, 27 Oct 2025 19:44:09 +0800 Subject: [PATCH] Add CI build --- .github/workflows/ci.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..bade70ba --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,24 @@ +name: Build + +on: + push: + branches: [master] + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v3 + with: + submodules: recursive + - uses: ilammy/msvc-dev-cmd@v1 + - uses: microsoft/setup-msbuild@v1.1 + - name: Build solution + run: msbuild GARBro.sln -p:Configuration=Release + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: GARbro + path: bin/Release