From d91fc16ae4177704c2e8c31f540c69c8454374bd Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Fri, 24 Mar 2023 09:17:30 -0400 Subject: [PATCH 1/3] add github API token to mkdocs workflow --- .github/workflows/mkdocs-material.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/mkdocs-material.yml b/.github/workflows/mkdocs-material.yml index 26a46c1328..f8f58a6b0c 100644 --- a/.github/workflows/mkdocs-material.yml +++ b/.github/workflows/mkdocs-material.yml @@ -34,6 +34,8 @@ jobs: - name: deploy to gh-pages if: ${{ github.ref == 'refs/heads/main' }} + with: + github-token: ${{ secrets.GITHUB_TOKEN }} run: | python -m \ mkdocs gh-deploy \ From 0f13b900594fc38cfa5eaf55623224cddb8de870 Mon Sep 17 00:00:00 2001 From: Yeung Yiu Hung <446404+darkcl@users.noreply.github.com> Date: Fri, 24 Mar 2023 23:21:51 +0800 Subject: [PATCH 2/3] doc(readme): fix incorrect install command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5857b2d898..4f399a332c 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ not supported. _For Windows/Linux with an NVIDIA GPU:_ ```terminal - pip install InvokeAI[xformers] --use-pep517 --extra-index-url https://download.pytorch.org/whl/cu117 + pip install "InvokeAI[xformers]" --use-pep517 --extra-index-url https://download.pytorch.org/whl/cu117 ``` _For Linux with an AMD GPU:_ From 43d2d6d98c0df13c1ef8cfa2e304267c9dfb0f2f Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Fri, 24 Mar 2023 17:58:03 -0400 Subject: [PATCH 3/3] add blessedcoolant as backup to mauwii codeowner --- .github/CODEOWNERS | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 3abca42b1a..17facf4155 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,16 +1,16 @@ # continuous integration -/.github/workflows/ @mauwii @lstein +/.github/workflows/ @mauwii @lstein @blessedcoolant # documentation -/docs/ @lstein @mauwii @tildebyte -/mkdocs.yml @lstein @mauwii +/docs/ @lstein @mauwii @tildebyte @blessedcoolant +/mkdocs.yml @lstein @mauwii @blessedcoolant # nodes /invokeai/app/ @Kyle0654 @blessedcoolant # installation and configuration /pyproject.toml @mauwii @lstein @blessedcoolant -/docker/ @mauwii @lstein +/docker/ @mauwii @lstein @blessedcoolant /scripts/ @ebr @lstein /installer/ @lstein @ebr /invokeai/assets @lstein @ebr