25 lines
473 B
YAML
25 lines
473 B
YAML
stages:
|
|
- build
|
|
|
|
cache:
|
|
key: ${CI_COMMIT_REF_SLUG}
|
|
paths:
|
|
- ReallifeGamemode.Client/node_modules/
|
|
|
|
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 install"
|
|
- "npm update"
|
|
- "npm run build:server"
|
|
- "cd ../"
|
|
- "sudo ../gm_copy_build_files.sh" |