mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-06 19:12:30 +01:00
25 lines
669 B
YAML
25 lines
669 B
YAML
include:
|
|
- ".gitlab/ci/base_jobs.yml"
|
|
- ".gitlab/ci/build_jobs.yml"
|
|
- ".gitlab/ci/build_release_jobs.yml"
|
|
- ".gitlab/ci/check_jobs.yml"
|
|
|
|
stages:
|
|
# None Steam build for every commit
|
|
- build
|
|
# Steam build for every commit
|
|
- build_steam
|
|
# Git release tag builds
|
|
- release_build
|
|
# Gitlab releases at:
|
|
# https://gitlab.com/kelteseth/ScreenPlay/-/releases
|
|
- release
|
|
# Checks for source code formattings
|
|
- check
|
|
|
|
documentation:
|
|
dependencies: []
|
|
stage: .post
|
|
script:
|
|
- curl --request POST --form "token=$CI_JOB_TOKEN" --form ref=master https://gitlab.com/api/v4/projects/15800262/trigger/pipeline
|