Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 21 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/networking/NetManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ Result<uint8_t> NetManager::parseData(const CTSerialize::MessageHeader* msg, Ste
return Ok(0);
}

void flushDictionaries() {
void NetManager::flushDictionaries() {

}

Expand Down
Loading