fix: use POSIX sh instead of bash for Alpine CI compatibility
Deploy Slides / build-and-deploy (push) Successful in 1m41s

The node:22-alpine container doesn't have bash installed,
causing `sh: bash: not found` in the build step.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-27 13:35:53 +08:00
parent 679a8fb7d4
commit b86fb28d14
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail
#!/bin/sh
set -eu
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
DIST="$ROOT/dist"