From c23cc35d5b907611a231c734ae29223ee8ada1e7 Mon Sep 17 00:00:00 2001 From: Igbalabanov <101612094+Chs000-00@users.noreply.github.com> Date: Thu, 18 Sep 2025 10:59:55 -0700 Subject: [PATCH 1/2] dumbass me only webeditor --- src/networking/NetManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/networking/NetManager.cpp b/src/networking/NetManager.cpp index 2c86d7b..082833e 100644 --- a/src/networking/NetManager.cpp +++ b/src/networking/NetManager.cpp @@ -333,7 +333,7 @@ Result NetManager::parseData(const CTSerialize::MessageHeader* msg, Ste return Ok(0); } -void flushDictionaries() { +void NetManager::flushDictionaries() { } From 9724d258773d93261afce7b893c160d0f8c9b61a Mon Sep 17 00:00:00 2001 From: Igbalabanov <101612094+Chs000-00@users.noreply.github.com> Date: Thu, 18 Sep 2025 11:12:17 -0700 Subject: [PATCH 2/2] Update Workflow action --- .github/workflows/main.yml | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9f423f7..23e8dc0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,29 +1,41 @@ -name: Build Geode Mod +name: Build CreateTogether on: workflow_dispatch: push: branches: - "deploy" + jobs: build: - - name: Windows - runs-on: Windows-latest + strategy: + fail-fast: false + matrix: + config: + - name: Windows + os: windows-latest + + name: ${{ matrix.config.name }} + runs-on: ${{ matrix.config.os }} steps: - uses: actions/checkout@v4 - - uses: geode-sdk/build-geode-mod@main - id: build - + + - name: Build the mod + uses: geode-sdk/build-geode-mod@main + with: + combine: true + target: ${{ matrix.config.target }} package: - name: Package build + name: Package builds runs-on: ubuntu-latest needs: ['build'] steps: - - uses: actions/checkout@v4 + - uses: geode-sdk/build-geode-mod/combine@main + id: build + - uses: actions/upload-artifact@v4 with: name: Build Output