Files
windmill/frontend/publish.sh
Ruben Fiszel d3d61d4acd bundle oauth_connect.json into packaged components (#9535)
* fix(frontend): abort publish.sh when package build fails

* fix(frontend): bundle oauth_connect.json into packaged components
2026-06-11 14:19:24 +00:00

9 lines
228 B
Bash
Executable File

#!/usr/bin/env bash
# Abort if the package build fails — otherwise npm publish ships the stale
# package/ directory left over from the last successful build.
set -euo pipefail
cd "$(dirname "$0")"
npm run package
npm publish