Skip to content

68-69

68-69 #129

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: do autosidebar
run: |
cd ./docs
node ./auto.js
ls
- name: Commit changes
uses: EndBug/add-and-commit@v4
with:
author_name: GITHUB_GENERATOR
message: "AUTO GENERATE sidebar"
add: "*.md"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CI: true