From 81b61e035840ad03dbe5d5817f33f7b1ebcba815 Mon Sep 17 00:00:00 2001 From: joelhulen Date: Mon, 18 Dec 2023 13:14:31 -0500 Subject: [PATCH 1/3] Update GH Pages deployment --- .github/workflows/gh-pages.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index cbb9965c6a..c55e973dc7 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -21,7 +21,6 @@ jobs: publish-docs: environment: name: github-pages - url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - name: Checkout @@ -36,11 +35,12 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v3 - - name: Upload artifact - uses: actions/upload-pages-artifact@v2 - with: - # Upload entire repository - path: 'docs/_site' - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v2 \ No newline at end of file + if: | + github.event.repository.fork == false && + github.ref_name == github.event.repository.default_branch + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: docs/_site + cname: docs.foundationallm.ai \ No newline at end of file From 249855570ea17dbf35d1825a791baf14eaf469c8 Mon Sep 17 00:00:00 2001 From: joelhulen Date: Mon, 18 Dec 2023 13:46:38 -0500 Subject: [PATCH 2/3] Added documentation link --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 93f1f943d5..02ad8cdd06 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,10 @@ The core problems to deliver enterprise copilots are: - The top AI risks (inaccuracy, cybersecurity, compliance, explainability, privacy) are not being mitigated. - Delivery of a copilot solution is time consuming, expensive and frustrating. +## Documentation + +Get up to speed with Foundationa**LLM** by reading the [documentation](https://docs.foundationallm.ai). This includes deployment instructions, quickstarts, architecture, and API references. + ## Getting Started FoundationalLLM provides a simple command line driven approach to getting your first deployment up and running. Basically, it's two commands. After that, you can customize the solution, run it locally on your machine and update the deployment with your customizations. From 9db5fe5a9ce1dbed37cf19377b6ca60572f7da52 Mon Sep 17 00:00:00 2001 From: joelhulen Date: Mon, 18 Dec 2023 14:04:23 -0500 Subject: [PATCH 3/3] Remove build from PR --- .github/workflows/gh-pages.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index c55e973dc7..0a5bed96b0 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -3,8 +3,6 @@ name: github-pages on: push: branches: [ main ] - pull_request: - branches: [ main ] permissions: contents: read