2021-09-11 15:10:32 +00:00
|
|
|
pipeline:
|
2021-09-23 15:54:19 +00:00
|
|
|
build:
|
2021-09-11 15:10:32 +00:00
|
|
|
image: node:14-alpine
|
2021-09-23 15:54:19 +00:00
|
|
|
commands:
|
|
|
|
- cd docs/
|
|
|
|
- yarn install --frozen-lockfile
|
|
|
|
- yarn build
|
|
|
|
when:
|
|
|
|
event: [push, pull_request]
|
|
|
|
path: "docs/**"
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
image: alpine:3.14.2
|
2021-09-11 15:10:32 +00:00
|
|
|
secrets:
|
|
|
|
- BOT_PRIVATE_KEY
|
|
|
|
commands:
|
2021-09-23 15:54:19 +00:00
|
|
|
- apk add openssh-client git rsync
|
2021-09-11 15:10:32 +00:00
|
|
|
- mkdir -p $HOME/.ssh
|
|
|
|
- ssh-keyscan -t rsa github.com >> $HOME/.ssh/known_hosts
|
2021-09-11 15:16:26 +00:00
|
|
|
- echo "$BOT_PRIVATE_KEY" > $HOME/.ssh/id_rsa
|
2021-09-11 15:10:32 +00:00
|
|
|
- chmod 0600 $HOME/.ssh/id_rsa
|
2021-09-11 16:48:52 +00:00
|
|
|
- git config --global user.email "woodpecker-bot@obermui.de"
|
|
|
|
- git config --global user.name "woodpecker-bot"
|
2021-11-30 16:46:19 +00:00
|
|
|
- git clone -b ${CI_REPO_DEFAULT_BRANCH} --single-branch git@github.com:woodpecker-ci/woodpecker-ci.github.io.git /repo
|
2021-09-23 15:54:19 +00:00
|
|
|
# copy all docs files and delete all old ones, but leave CNAME and index.yaml untouched
|
|
|
|
- rsync -r --exclude .git --exclude CNAME --exclude index.yaml --exclude README.md --delete docs/build/ /repo
|
|
|
|
- cd /repo
|
|
|
|
- git add .
|
|
|
|
# exit successfully if nothing changed
|
|
|
|
- test -n "$(git status --porcelain)" || exit 0
|
2021-11-25 19:43:31 +00:00
|
|
|
- git commit -m "Deploy website - based on ${CI_COMMIT_SHA}"
|
2021-09-23 15:54:19 +00:00
|
|
|
- git push
|
2021-09-11 15:10:32 +00:00
|
|
|
when:
|
|
|
|
event: push
|
2021-11-30 16:46:19 +00:00
|
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
2021-09-21 04:18:43 +00:00
|
|
|
path: "docs/**"
|
2021-09-11 15:10:32 +00:00
|
|
|
|