Skip to content
Closed
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
35 changes: 35 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build Project

on:
push:
branches:
- main
- trunk
- master
- release/*
- feature/*
pull_request:
branches:
- main
- trunk
- master
- release/*
- feature/*
workflow_dispatch:
workflow_call:

jobs:
build_all:
runs-on: windows-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
with:
lfs: true

- name: Build UE5 project
uses: OrchidIsle/UE5-Build-Project@latest
with:
UPROJECT_PATH: ${{ github.workspace }}/WaveMaster/WaveMaster.uproject
BUILD_CONFIG: Development
PLATFORM: Win64
Loading