only build on main branch

This commit is contained in:
Cat Flynn 2021-01-29 17:35:49 +00:00
parent 17e756f1cc
commit 9d2f1252ef
1 changed files with 38 additions and 36 deletions

View File

@ -1,36 +1,38 @@
stages:
- build
- deploy
variables:
GIT_STRATEGY: fetch
UNITY_VERSION: 2020.2.2f1
SRC_DIR: ./game
BUILD_DIR: ./game/Build
build:
stage: build
script:
- chmod +x ./ci/build.sh
- ./ci/build.sh $UNITY_VERSION
artifacts:
name: $CI_PROJECT_NAME-$CI_PIPELINE_ID
paths:
- $BUILD_DIR
.deploy: &deploy
stage: deploy
dependencies:
- build
deploy-dev:
<<: *deploy
variables:
ITCH_USER: "cyndrdev"
ITCH_GAME: "revival-internal-track"
ITCH_TRACK: "windows-unstable"
script:
- chmod +x ./ci/deploy.sh
- ./ci/deploy.sh $BUILD_DIR $ITCH_USER $ITCH_GAME $ITCH_TRACK
stages:
- build
- deploy
variables:
GIT_STRATEGY: fetch
UNITY_VERSION: 2020.2.2f1
SRC_DIR: ./game
BUILD_DIR: ./game/Build
build:
stage: build
script:
- chmod +x ./ci/build.sh
- ./ci/build.sh $UNITY_VERSION
artifacts:
name: $CI_PROJECT_NAME-$CI_PIPELINE_ID
paths:
- $BUILD_DIR
.deploy: &deploy
stage: deploy
dependencies:
- build
deploy-dev:
<<: *deploy
rules:
- if: $CI_COMMIT_BRANCH == "main"
variables:
ITCH_USER: "cyndrdev"
ITCH_GAME: "revival-internal-track"
ITCH_TRACK: "windows-unstable"
script:
- chmod +x ./ci/deploy.sh
- ./ci/deploy.sh $BUILD_DIR $ITCH_USER $ITCH_GAME $ITCH_TRACK