Skip to content

Commit cfc4fd2

Browse files
committed
fix: replace emoji with ASCII in workflow echo statements
1 parent 632c2a3 commit cfc4fd2

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build_deploy_multiversion.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
export DOCS_VERSION=1.3
5858
export DOCS_BASEURL=https://docs.openspp.org/v1.3/
5959
sphinx-build -b html docs _build/html/v1.3
60-
echo " v1.3 build complete"
60+
echo "[OK] v1.3 build complete"
6161
6262
# ============================================
6363
# BUILD v2.0 (from v2-odoo19-doc-refresh branch)
@@ -83,7 +83,7 @@ jobs:
8383
export DOCS_VERSION=2.0
8484
export DOCS_BASEURL=https://docs.openspp.org/
8585
sphinx-build -b html docs _build/html
86-
echo " v2.0 build complete"
86+
echo "[OK] v2.0 build complete"
8787
8888
# ============================================
8989
# COMBINE BUILDS & SETUP VERSION SWITCHER
@@ -92,7 +92,7 @@ jobs:
9292
run: |
9393
# Move v1.3 build back
9494
mv /tmp/v1.3-build _build/html/v1.3
95-
echo " Combined v2.0 (root) and v1.3 (/v1.3/)"
95+
echo "[OK] Combined v2.0 (root) and v1.3 (/v1.3/)"
9696
9797
- name: Setup version switcher
9898
run: |
@@ -122,15 +122,15 @@ jobs:
122122
cp /tmp/version_switcher.js _build/html/_static/
123123
cp /tmp/version_switcher.js _build/html/v1.3/_static/
124124
125-
echo " Version switcher configured"
125+
echo "[OK] Version switcher configured"
126126
127127
- name: Inject version switcher script
128128
run: |
129129
# Inject script tag into all HTML files that don't already have it
130130
find _build/html -name "*.html" -exec grep -L "version_switcher.js" {} \; | \
131131
xargs -I {} sed -i 's|</body>|<script src="/_static/version_switcher.js"></script></body>|g' {}
132132
133-
echo " Version switcher script injected"
133+
echo "[OK] Version switcher script injected"
134134
135135
- name: Display build summary
136136
run: |
@@ -161,7 +161,7 @@ jobs:
161161
- name: Display deployment status
162162
run: |
163163
echo "============================================"
164-
echo " Multi-version documentation deployed!"
164+
echo "[OK] Multi-version documentation deployed!"
165165
echo "============================================"
166166
echo ""
167167
echo "URLs:"

0 commit comments

Comments
 (0)