diff --git a/.github/workflows/contracts-docs.yaml b/.github/workflows/contracts-docs.yml similarity index 97% rename from .github/workflows/contracts-docs.yaml rename to .github/workflows/contracts-docs.yml index d07fa281..b570e2dc 100644 --- a/.github/workflows/contracts-docs.yaml +++ b/.github/workflows/contracts-docs.yml @@ -42,6 +42,7 @@ jobs: uses: keep-network/ci/.github/workflows/reusable-solidity-docs.yml@main with: publish: false + addTOC: false commentPR: true exportAsGHArtifacts: true @@ -58,12 +59,14 @@ jobs: uses: keep-network/ci/.github/workflows/reusable-solidity-docs.yml@main with: publish: true + addTOC: false verifyCommits: true destinationRepo: threshold-network/threshold destinationFolder: ./docs/app-development/staking-contract-and-dao/staking-contract-and-dao-api destinationBaseBranch: main userEmail: 38324465+thesis-valkyrie@users.noreply.github.com userName: Valkyrie + rsyncDelete: true secrets: githubToken: ${{ secrets.THRESHOLD_DOCS_GITHUB_TOKEN }} gpgPrivateKey: ${{ secrets.THRESHOLD_DOCS_GPG_PRIVATE_KEY_BASE64 }} diff --git a/.github/workflows/contracts.yaml b/.github/workflows/contracts.yml similarity index 100% rename from .github/workflows/contracts.yaml rename to .github/workflows/contracts.yml diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yml similarity index 100% rename from .github/workflows/format.yaml rename to .github/workflows/format.yml diff --git a/hardhat.config.ts b/hardhat.config.ts index 134e4f1d..17bcfabb 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -124,7 +124,7 @@ const config: HardhatUserConfig = { docgen: { outputDir: "generated-docs", templates: "docgen-templates", - pages: "single", // `single`, `items` or `files` + pages: "files", // `single`, `items` or `files` exclude: ["./test"], }, }