Maintain default game room name in English (#607) #1432
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build client | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
workflow_dispatch: | |
jobs: | |
build-clients: | |
runs-on: windows-2022 | |
strategy: | |
matrix: | |
Game: | |
- Ares | |
- TS | |
- YR | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: ./global.json | |
- name: Build ${{matrix.Game}} | |
run: ./Scripts/build.ps1 ${{matrix.Game}} | |
shell: pwsh | |
- uses: actions/upload-artifact@v4 | |
name: Upload Artifacts | |
with: | |
name: artifacts-${{matrix.Game}} | |
path: ./Compiled/${{matrix.Game}} | |