From d09ea69e13e8fc6a500ea4c007ab7cb0518cf5db Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 4 Apr 2023 21:25:56 +0100 Subject: [PATCH 1/2] [ci skip] docs: update upm stable in README --- X10D.Unity/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/X10D.Unity/README.md b/X10D.Unity/README.md index f0e6d4c..2e4e1f6 100644 --- a/X10D.Unity/README.md +++ b/X10D.Unity/README.md @@ -26,7 +26,7 @@ To install X10D in Unity, follow the steps blow: The [upm](https://github.com/oliverbooth/X10D/tree/upm) branch contains the latest nightly - that is the bleeding edge version of X10D. If you'd like to remain on a stable release, specify a commit hash after the `#` instead of `upm`. -The latest current stable is 3.1.0, which is commit [9f3b09661b09e83690318370eea808e70dd4a72c](https://github.com/oliverbooth/X10D/commit/9f3b09661b09e83690318370eea808e70dd4a72c). +The latest current stable is 3.2.0, which is commit [55898d9e70228380b2d039c55e36d89cfe8a0fa2](https://github.com/oliverbooth/X10D/commit/55898d9e70228380b2d039c55e36d89cfe8a0fa2). Keep in mind that referencing a specific commit rather than the `upm` branch will prevent the auto-updater in Unity from detecting new versions. ## Contributing From a23be6dd777139facb95daf0297258d53e22b4d2 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Thu, 13 Apr 2023 02:38:17 +0100 Subject: [PATCH 2/2] [ci skip] fix(ci): mkdir docfx_project/images --- .github/workflows/docfx.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docfx.yml b/.github/workflows/docfx.yml index 3aae86f..e460ace 100644 --- a/.github/workflows/docfx.yml +++ b/.github/workflows/docfx.yml @@ -13,7 +13,9 @@ jobs: uses: actions/checkout@v3 - name: Copy favicon - run: cp branding_Icon.png docfx_project/images/favicon.png + run: | + mkdir docfx_project/images + cp branding_Icon.png docfx_project/images/favicon.png - name: Build documentation uses: nikeee/docfx-action@v1.0.0