amethyst/.gitlab-ci.yml

50 lines
1.0 KiB
YAML

variables:
GIT_SUBMODULE_STRATEGY: none
include:
- project: 'templates/hugo-obsidian'
file: '/action.yml'
inputs:
index: "true"
input: content
output: assets/indices
root: "."
- local: "/.gitlab/hugo.template.yml"
inputs:
root: content
theme: hugo-book
stages:
- index
- setup-hugo
- deploy
deploy:
stage: deploy
tags:
- shell
script:
- cp -r ${CI_PROJECT_DIR}/public/* ${DEPLOY_PATH}
clone:
variables:
GIT_SUBMODULE_STRATEGY: none
stage: .pre
tags:
- shell
before_script:
- set -x
- sed -E "s,git@(git.tablet.sh):,https://gitlab-ci-token:${CI_JOB_TOKEN}@\1/," -i .gitmodules
##- git config --local submodule.content.url "https://deployer:${DEPLOY_TOKEN}@git.tablet.sh/the-btfash-foundation/tablet.sh"
script:
- git submodule sync
- git remote -v
- git submodule sync
- git submodule status
- git submodule update --remote --init --recursive
- git submodule init
- ls -l themes
artifacts:
paths:
- content
- themes