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 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() { }