Skip to content

Commit 00d843e

Browse files
authored
Merge pull request #35 from pflooky/dev-mkdocs
Dev mkdocs
2 parents d43aef0 + d81aa7c commit 00d843e

File tree

92 files changed

+19326
-125
lines changed

Some content is hidden

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

92 files changed

+19326
-125
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: docs-site-deploy
2+
on:
3+
push:
4+
tags:
5+
- "v*"
6+
permissions:
7+
contents: write
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
with:
14+
fetch-depth: 0
15+
- name: Configure Git Credentials
16+
run: |
17+
git config user.name github-actions[bot]
18+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
19+
- uses: actions/setup-python@v5
20+
with:
21+
python-version: 3.x
22+
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
23+
- uses: actions/cache@v4
24+
with:
25+
key: mkdocs-material-${{ env.cache_id }}
26+
path: .cache
27+
restore-keys: |
28+
mkdocs-material-
29+
- run: pip install mkdocs-open-in-new-tab mike
30+
- run: pip install mkdocs-material
31+
- run: mike deploy --push --update-aliases ${{ github.ref_name }} latest

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jsonSchemas.xml

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/open-data-contract-standard.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ This document tracks the history and evolution of the **Open Data Contract Stand
77
* Change `price.priceAmount` data type from `string` to `number`
88
* Change `slaProperties.value` data type from `string` to `oneOf[string, number]`
99
* Change `slaProperties.valueExt` data type from `string` to `oneOf[string, number]`
10-
* Update [examples](examples) to adhere to JSON schema
11-
* Full example from README directs to [full-example.yaml](examples/all/full-example.yaml)
10+
* Update [examples](docs/examples) to adhere to JSON schema
11+
* Full example from README directs to [full-example.yaml](docs/examples/all/full-example.yaml)
12+
* Add in mkdocs for creating documentation website
1213

1314
# v2.2.1 - 2023-12-18 - APPROVED
1415

0 commit comments

Comments
 (0)