2019-11-30 18:36:10 +00:00
|
|
|
name: wiki
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
2020-03-30 12:05:37 +00:00
|
|
|
- '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
|
2020-03-30 12:05:37 +00:00
|
|
|
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"
|
2020-03-30 12:05:37 +00:00
|
|
|
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 ..
|
2020-03-30 12:05:37 +00:00
|
|
|
rm -rf wiki
|