Skip to content

Commit 4cd3f86

Browse files
authored
Merge pull request #162 from aws-observability/deploy/new-docs
Deploy docusaurus
2 parents bcb0b1f + 7a36b7c commit 4cd3f86

File tree

904 files changed

+31
-30
lines changed

Some content is hidden

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

904 files changed

+31
-30
lines changed

.github/workflows/docs-ci.yaml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,15 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14-
- uses: actions/setup-python@v4
14+
- uses: actions/setup-node@v3
1515
with:
16-
python-version: 3.x
17-
- uses: actions/cache@v2
18-
with:
19-
key: ${{ github.ref }}
20-
path: .cache
21-
- run: pip install mkdocs-material
22-
- run: mkdocs build -f mkdocs.yaml
23-
- run: mkdocs build -f mkdocs.ja.yaml
16+
node-version: 20
17+
cach: yarn
18+
- name: Install dependencies
19+
run: yarn install --frozen-lockfile --non-interactive
20+
- name: Build
21+
run: yarn build
2422
- uses: peaceiris/actions-gh-pages@v3
2523
with:
2624
github_token: ${{ secrets.GITHUB_TOKEN }}
27-
publish_dir: ./site
25+
publish_dir: ./build

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,26 @@ site/
22
.idea/
33
**/.DS_Store
44

5+
yarn.lock
6+
.docusaurus
7+
8+
# Dependencies
9+
/node_modules
10+
11+
# Production
12+
/build
13+
14+
# Generated files
15+
.docusaurus
16+
.cache-loader
17+
18+
# Misc
19+
.DS_Store
20+
.env.local
21+
.env.development.local
22+
.env.test.local
23+
.env.production.local
24+
25+
npm-debug.log*
26+
yarn-debug.log*
27+
yarn-error.log*

docusaurus/observability-best-practices/README.md renamed to docusaurus/README.md

docusaurus/observability-best-practices/babel.config.js renamed to docusaurus/babel.config.js

File renamed without changes.

docusaurus/observability-best-practices/blog/2019-05-28-first-blog-post.md renamed to docusaurus/blog/2019-05-28-first-blog-post.md

docusaurus/observability-best-practices/blog/2019-05-29-long-blog-post.md renamed to docusaurus/blog/2019-05-29-long-blog-post.md

docusaurus/observability-best-practices/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg renamed to docusaurus/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg

File renamed without changes.

docusaurus/observability-best-practices/blog/2021-08-26-welcome/index.md renamed to docusaurus/blog/2021-08-26-welcome/index.md

docusaurus/observability-best-practices/blog/authors.yml renamed to docusaurus/blog/authors.yml

File renamed without changes.

docusaurus/observability-best-practices/blog/tags.yml renamed to docusaurus/blog/tags.yml

File renamed without changes.

0 commit comments

Comments
 (0)