Skip to content

Commit

Permalink
init: create project
Browse files Browse the repository at this point in the history
  • Loading branch information
Guo-Zhang committed Nov 22, 2023
1 parent 02421b6 commit 888118c
Show file tree
Hide file tree
Showing 7 changed files with 69 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/jupyterbook-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: jupyterbook-publish

# Only run this when the master branch changes
on:
push:
branches:
- main
- master
# If your git repository has the Jupyter Book within some-subfolder next to
# unrelated files, you can make this run only if a file within that specific
# folder has been modified.
#
# paths:
# - some-subfolder/**

# This job installs dependencies, builds the book, and pushes it to `gh-pages`
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

# Install dependencies
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: Install dependencies
run: |
pip install jupyter-book
# Build the book
- name: Build the book
run: |
jupyter-book build .
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3.6.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html
16 changes: 16 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
repos:
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v3.0.0
hooks:
- id: conventional-pre-commit
stages: [commit-msg]
args: []

- repo: https://github.com/executablebooks/mdformat
rev: 0.7.17
hooks:
- id: mdformat
# Optionally add plugins
additional_dependencies:
- mdformat-myst
args: ['.']
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
title: 量潮DevOps手册
author: 量潮科技
5 changes: 5 additions & 0 deletions _toc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
format: jb-book
root: index.md
chapters:
- file: ci/README.md
- file: testing/README.md
1 change: 1 addition & 0 deletions ci/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 持续集成
1 change: 1 addition & 0 deletions index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 简介
1 change: 1 addition & 0 deletions testing/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 持续测试

0 comments on commit 888118c

Please sign in to comment.