Skip to content

Commit

Permalink
Docs/docusaurus (#331)
Browse files Browse the repository at this point in the history
* Docs/setup docusaurus (#298)

* setup docusarus template

* add iota style and identity content

* add gh deploy action

* fix sidebar and titles

* change build dir

* fix folder name

* add specs, fix links

* fix images

* fix base path and github link

* add cname for security

* setup documentation file structure in docusaurus

* add codeSnippet component

* update file paths

* add remark-import-partial plugin

* add missing doc files

* update landing page

* update footer/add empty team page

* remember selected programming language

* fix rust Replit

* change height of code snippet

* add teams page

* adjust team page

* minor edits to landing page

* Added DID Intro text

* Moved meeting minutes

* Remove mdbook docs

* Renamed DocOps -> documentation

* Updated deploy workflow documentation

* Updated blogs

* update docusaurus.config.js

* Fix workflow

* Trigger workflow if itself changes

* Moved latest meeting notes

Co-authored-by: huhn511 <sehe89@gmail.com>
Co-authored-by: Abdulrahim Al Methiab <abdulrahim.almethiab@iota.org>
  • Loading branch information
3 people committed Jul 22, 2021
1 parent 14a61f3 commit 2f4459e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deploy_docs_to_github_pages.yml
Expand Up @@ -5,6 +5,7 @@ on:
branches: [dev, main]
paths:
- 'documentation/**'
- '.github/workflows/deploy_docs_to_github_pages.yml'

jobs:
checks:
Expand All @@ -17,7 +18,7 @@ jobs:
node-version: '12.x'
- name: Test Build
run: |
cd DocOps
cd documentation
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
Expand All @@ -36,7 +37,7 @@ jobs:
node-version: '12.x'
- name: Build
run: |
cd DocOps
cd documentation
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
Expand All @@ -49,5 +50,5 @@ jobs:
uses: iotaledger/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./DocOps/build
publish_dir: ./documentation/build
cname: identity-docs.iota.org
File renamed without changes.

0 comments on commit 2f4459e

Please sign in to comment.