gcg-website/.gitlab-ci.yml

18 lines
344 B
YAML
Raw Normal View History

2022-03-20 13:25:50 +01:00
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
variables:
GIT_SUBMODULE_STRATEGY: recursive
2022-03-20 14:15:09 +01:00
2022-03-20 13:25:50 +01:00
pages:
2022-03-20 14:15:09 +01:00
before_script:
2022-03-20 14:26:26 +01:00
- apk add --update --no-cache openssh sshpass
2022-03-20 13:25:50 +01:00
script:
- hugo
2022-03-20 14:28:36 +01:00
- sshpass -p $scp_password scp public $scp_path
2022-03-20 13:25:50 +01:00
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH