19 lines
361 B
YAML
19 lines
361 B
YAML
stages:
|
|
- build
|
|
|
|
before_script:
|
|
- "git lfs install"
|
|
- "git lfs pull"
|
|
|
|
build:
|
|
stage: build
|
|
only:
|
|
- develop@log-gtav/reallife-gamemode
|
|
script:
|
|
- "../gm_database_password.sh"
|
|
- "dotnet build -c ServerBuild"
|
|
- "cd ReallifeGamemode.Client/"
|
|
- "npm ci"
|
|
- "npm run build:server"
|
|
- "cd ../"
|
|
- "sudo ../gm_copy_build_files.sh" |