Skip to content

Commit

Permalink
Add mkdocs capability - first draft
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Curran <[email protected]>
  • Loading branch information
swcurran committed Dec 29, 2023
1 parent 7356e80 commit df1e900
Show file tree
Hide file tree
Showing 15 changed files with 535 additions and 235 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ci
on:
workflow_dispatch:
# push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: chmod ug+x scripts/genMkdocsSite.sh
- run: scripts/genMkdocsSite.sh
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Dependencies
/node_modules

# Production
/build

# Generated files
.docusaurus
.cache-loader

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

/tmp
.yarn
/site
1 change: 1 addition & 0 deletions OCABundles/schema/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Credential OCA Bundles
1 change: 1 addition & 0 deletions OCABundles/schema/bcgov-digital-trust/LCRB/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# LCRB
1 change: 1 addition & 0 deletions OCABundles/schema/bcgov-digital-trust/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# BC Gov
1 change: 1 addition & 0 deletions OCABundles/schema/qc_anig_demo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# MCN, Government of Quebec
225 changes: 0 additions & 225 deletions OCABundles/validators/schema.json

This file was deleted.

Loading

0 comments on commit df1e900

Please sign in to comment.