We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec8aba4 commit 59b09a4Copy full SHA for 59b09a4
.github/workflows/vmm-ui.yml
@@ -29,4 +29,10 @@ jobs:
29
30
- name: Ensure vmm UI build is clean
31
run: |
32
- test -z "$(git status --porcelain)"
+ if [ -n "$(git status --porcelain)" ]; then
33
+ echo "VMM UI build produced uncommitted changes."
34
+ echo "Run: cd vmm/ui && npm ci && npm run build"
35
+ echo "Then commit the updated build output `vmm/src/console_v1.html`"
36
+ git status --porcelain
37
+ exit 1
38
+ fi
0 commit comments