VictoriaMetrics/.github/workflows/wiki.yml

30 lines
822 B
YAML
Raw Normal View History

2019-11-30 18:36:10 +00:00
name: wiki
on:
push:
paths:
- 'docs/*'
2019-11-30 18:58:28 +00:00
branches:
- master
2019-11-30 18:36:10 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: publish
shell: bash
env:
TOKEN: ${{secrets.CI_TOKEN}}
run: |
2019-11-30 18:58:28 +00:00
cd docs
git clone https://vika:${TOKEN}@github.com/VictoriaMetrics/VictoriaMetrics.wiki.git wiki
find ./ -name '*' -exec cp -prv '{}' 'wiki' ';'
2019-11-30 18:36:10 +00:00
cd wiki
git config --local user.email "info@victoriametrics.com"
git config --local user.name "Vika"
git add .
2019-11-30 18:36:10 +00:00
git commit -m "update wiki pages"
remote_repo="https://vika:${TOKEN}@github.com/VictoriaMetrics/VictoriaMetrics.wiki.git"
git push "${remote_repo}"
cd ..
rm -rf wiki