Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 5ec7881

Browse files
authored
Merge pull request #182 from IBM/mkdocs
add support for gh pages and mkdocs
2 parents df32189 + aed79fc commit 5ec7881

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+117
-3
lines changed

.gitbook.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Do not edit this file, to adjust the table of contents, modify SUMMARY.md
22

3-
root: ./workshop/
3+
root: ./docs/
44

55
structure:
66
readme: README.md

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: ci
2+
on:
3+
push:
4+
branches:
5+
- main
6+
- master
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-python@v2
13+
with:
14+
python-version: 3.x
15+
- run: pip install mkdocs-material
16+
- run: mkdocs gh-deploy --force

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ node_js: 10
55
before_script:
66
- npm install markdownlint-cli
77
script:
8-
- markdownlint -c .markdownlint.json workshop --ignore workshop/SUMMARY.md
9-
- ./.verify-links.sh -v workshop
8+
- markdownlint -c .markdownlint.json docs --ignore docs/SUMMARY.md
9+
- ./.verify-links.sh -v docs
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)