22 lines
486 B
YAML
22 lines
486 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"
|
|
- "cd ReallifeGamemode.Server/"
|
|
- "dotnet build -c Release"
|
|
- "cd ../ReallifeGamemode.Client/"
|
|
- "npm ci"
|
|
- "npm run build:server"
|
|
- "cd ../ReallifeGamemode.DataService"
|
|
- "dotnet publish -c Release -r linux-x64"
|
|
- "cd ../"
|
|
- "sudo ../gm_copy_build_files.sh" |