Skip to content

split build client and build server #23

split build client and build server

split build client and build server #23

Workflow file for this run

name: build
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build server
uses: ./.github/actions/build-server
- name: Build client
uses: ./.github/actions/build-client
- name: Package
uses: ./.github/actions/package
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: workspace_artifacts
path: ${{ github.workspace }}