From 4ec9e007df7eb42ba430b19ee59b1a151ea24969 Mon Sep 17 00:00:00 2001 From: IndigoFox Date: Tue, 10 Oct 2023 14:05:49 -0700 Subject: [PATCH] minor readme update --- .github/workflows/go-dev.yml | 9 ++++++--- README.md | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go-dev.yml b/.github/workflows/go-dev.yml index c4b7e06..d681b73 100644 --- a/.github/workflows/go-dev.yml +++ b/.github/workflows/go-dev.yml @@ -10,11 +10,11 @@ on: branches: ["develop"] jobs: - build: + BuildWin64: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: BuildWin64 + - name: build uses: addnab/docker-run-action@v3 with: image: x1unix/go-mingw:1.20 @@ -23,7 +23,10 @@ jobs: run: | go build -o ./ifxmetrics_x64.dll -buildmode=c-shared -buildvcs=false -ldflags "-w -s -X main.EXTENSION_VERSION=${{github.ref_name}}-${{github.sha}}" ./extension/cmd - - name: BuildWin32 + BuildWin32: + runs-on: ubuntu-latest + steps: + - name: build uses: addnab/docker-run-action@v3 with: image: x1unix/go-mingw:1.20 diff --git a/README.md b/README.md index b800da2..85590b3 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ In the below example, the `milsimServerEfficiency` event handler will send data // ... "cbaEventHandlers": { "milsimServerEfficiency": { - "name": "milsimServerEfficiency", + "eventName": "milsimServerEfficiency", "description": "EVENTHANDLER. Tracks the efficiency of the server.", "enabled": true, "bucket": "server_performance",