mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2024-11-22 08:23:40 +00:00
ci(gitlab-ci); setup CI for the repo in meanwhile
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
This commit is contained in:
parent
06fc9fdf32
commit
f844a3e7fa
1 changed files with 52 additions and 0 deletions
52
.gitlab-ci.yml
Normal file
52
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,52 @@
|
|||
image:
|
||||
name: dock.mau.dev/ajhalili2006/tildeverse-web/build-ci
|
||||
entrypoint:
|
||||
- /bin/sh
|
||||
|
||||
.build-configs:
|
||||
variables:
|
||||
FF_ENABLE_COMMIT_DATA: "true"
|
||||
FF_GENERATE_SOCIAL_CARDS: "true"
|
||||
SECURE_FILES_DOWNLOAD_PATH: /run/secrets
|
||||
|
||||
.setupkit:
|
||||
before_script:
|
||||
- apk add curl gnupg
|
||||
- curl --silent "https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/download-secure-files/-/raw/main/installer" | bash
|
||||
- (curl -Ls --tlsv1.2 --proto "=https" --retry 3 https://cli.doppler.com/install.sh || wget -t 3 -qO- https://cli.doppler.com/install.sh) | sudo sh
|
||||
|
||||
stages:
|
||||
- build
|
||||
- lint
|
||||
- deploy
|
||||
|
||||
build:main:
|
||||
extends: [ .build-configs ]
|
||||
stage: build
|
||||
script:
|
||||
- mkdocs build
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
untracked: false
|
||||
when: on_success
|
||||
expire_in: "30 days"
|
||||
cache:
|
||||
paths:
|
||||
- .cache
|
||||
key: pages-build-main
|
||||
rules:
|
||||
- if: $CI_COMMIT_BRANCH == 'main'
|
||||
changes:
|
||||
- mkdocs.yml
|
||||
- markdown/*
|
||||
- markdown/**/*
|
||||
|
||||
deploy:main:
|
||||
extends: [ .setupkit, .build-configs ]
|
||||
needs:
|
||||
- build:main
|
||||
script:
|
||||
- apk add nodejs-lts npm
|
||||
- ls -Al
|
||||
- doppler run -- echo hi
|
Loading…
Reference in a new issue