diff --git a/.github/workflows/deploy_docs_to_github_pages.yml b/.github/workflows/deploy_docs_to_github_pages.yml index a4a04b3e59..af9c316a72 100644 --- a/.github/workflows/deploy_docs_to_github_pages.yml +++ b/.github/workflows/deploy_docs_to_github_pages.yml @@ -5,6 +5,7 @@ on: branches: [dev, main] paths: - 'documentation/**' + - '.github/workflows/deploy_docs_to_github_pages.yml' jobs: checks: @@ -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 @@ -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 @@ -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 diff --git a/docs/meeting-notes/2021-07-14.md b/documentation/docs/meeting-notes/2021-07-14.md similarity index 100% rename from docs/meeting-notes/2021-07-14.md rename to documentation/docs/meeting-notes/2021-07-14.md