game-theory-in-flow-problems/.gitlab-ci.yml

35 lines
532 B
YAML

stages:
- build
- pages
default:
tags:
- latex
build-document:
stage: build
script:
- .ci/build_document.sh
variables:
GIT_SUBMODULE_STRATEGY: recursive
artifacts:
paths:
- public/
only:
- tags
- branches
# - merge_requests
pages:
stage: pages
artifacts:
paths:
- public/
script:
- echo "Deploying to pages"
- test -f public/2023_Game_Theory_in_Flow_Problems.pdf
only:
- master
- main