Skip to content

fix ndef clientdll #124

fix ndef clientdll

fix ndef clientdll #124

Workflow file for this run

name: Build release
on:
workflow_dispatch:
push:
branches:
- 'fix/**'
- 'feat/**'
- 'dev/**'
# GitHub Actions usage is FREE for both public repositories and self-hosted runners.
# We can use it to build our project and do some automated builds and in future quality tests.
# https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions
jobs:
release:
name: build release
runs-on: windows-2022
timeout-minutes: 30
steps:
#checkout project
- uses: actions/checkout@v3
# setup msbuild
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1
# server.dll
- name: Build server.dll
working-directory: src/game/server
run: MSBuild.exe swarm_sdk_server.vcxproj -property:Configuration=Release
# client.dll
- name: Build client.dll
working-directory: src/game/client
run: MSBuild.exe swarm_sdk_client.vcxproj -property:Configuration=Release
# store artifacts
# make sure retention is low, this can become huge otherwise
- name: Store build
uses: actions/upload-artifact@v4
with:
name: Release
path: |
reactivedrop/bin/server.dll
reactivedrop/bin/client.dll