mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-06 17:37:09 +00:00
* action for auto docs * test * fix * merge action file * update * test * update * update * update * bump github action * test * bump action to 0.2.3 * add ignore file * revert empty line Co-authored-by: guoxudong <guoxudong.dev@gmail.com>
21 lines
494 B
YAML
21 lines
494 B
YAML
name: docs
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'docs/**'
|
|
branches:
|
|
- master
|
|
- release-*
|
|
jobs:
|
|
website:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Sync to kubevela.io Repo
|
|
uses: wonderflow/auto-docs-action@v0.2.3
|
|
env:
|
|
SSH_PRIVATE_KEY: ${{ secrets.GH_PAGES_DEPLOY }}
|
|
VERSION: ${{ github.ref }}
|
|
COMMIT_ID: ${{ github.sha }}
|
|
with:
|
|
gh-page: git@github.com:oam-dev/kubevela.io.git |