Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.

Create and prefill test account if enabled #305

Create and prefill test account if enabled

Create and prefill test account if enabled #305

name: Build Client Artifact
on:
push:
branches:
- 'develop'
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
client:
name: Publish Client
runs-on: ubuntu-latest
env:
BonesBackendConfiguration__UseInMemoryDb: true
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Publish
run: |
cd Frontend/Bones.WebUI
dotnet publish Bones.WebUI.csproj --configuration Release --property PublishDir=../../publish/
cd ../..
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: webui-wasm-client
path: ./publish