From b8669685fc563d9ff143b614d513f018cbf954ad Mon Sep 17 00:00:00 2001
From: James Bruten <109733895+james-bruten-mo@users.noreply.github.com>
Date: Fri, 13 Feb 2026 13:48:20 +0000
Subject: [PATCH 1/4] add um_utils docs
---
.github/files/index.html | 24 +++++++++++++++++
.github/workflows/docs.yaml | 52 +++++++++++++++++++------------------
2 files changed, 51 insertions(+), 25 deletions(-)
create mode 100644 .github/files/index.html
diff --git a/.github/files/index.html b/.github/files/index.html
new file mode 100644
index 0000000..116e3c0
--- /dev/null
+++ b/.github/files/index.html
@@ -0,0 +1,24 @@
+
+
+
+
User Guide
From 890225f7a0111b0ed4c4b5e12049c87b38439651 Mon Sep 17 00:00:00 2001
From: James Bruten <109733895+james-bruten-mo@users.noreply.github.com>
Date: Mon, 16 Feb 2026 08:09:27 +0000
Subject: [PATCH 4/4] remove template file
---
.github/files/index.html | 23 -----------------------
.github/workflows/docs.yaml | 12 +++++++++---
2 files changed, 9 insertions(+), 26 deletions(-)
delete mode 100644 .github/files/index.html
diff --git a/.github/files/index.html b/.github/files/index.html
deleted file mode 100644
index aa3883e..0000000
--- a/.github/files/index.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
Mule and UM Utils Documentation
-
-
-
-
-
Mule and UM Utils Documentation
-
-
-
-
-
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml
index 28a12f0..602fca8 100644
--- a/.github/workflows/docs.yaml
+++ b/.github/workflows/docs.yaml
@@ -43,15 +43,21 @@ jobs:
- name: Copy Built Documentation
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
run: |
- cp -r ./mule/docs/build/html .github/files/mule
- cp -r ./um_utils/docs/build/html .github/files/um_utils
+ mkdir _docs
+ cp -r ./mule/docs/build/html _docs/mule
+ cp -r ./um_utils/docs/build/html _docs/um_utils
+
+ echo '
' > _docs/index.html
- name: Upload artifacts
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
uses: actions/upload-pages-artifact@v4
with:
name: github-pages
- path: ./mule/docs/build/html
+ path: ./_docs
- name: Minimize uv cache
if: always()