Select Git revision
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.gitlab-ci.yml 578 B
stages:
- check
- deploy
variables:
GIT_SUBMODULE_STRATEGY: recursive
check:
stage: check
script:
- make check
tags:
- pandoc
deploy:
stage: deploy
script:
- make
- >-
curl -f -v
-u "$NEXTCLOUD_SHARE:$NEXTCLOUD_PW"
-T title.pdf
-H 'X-Requested-With: XMLHttpRequest'
-H 'X-Method-Override: PUT'
https://portal.idiv.de/nextcloud/public.php/webdav/title.pdf
environment:
name: production
only:
refs:
- master
variables:
- $NEXTCLOUD_PW
- $NEXTCLOUD_SHARE
tags:
- pandoc