* chore: Windmill integration tests * Revert github workflow temp changes * fix ee --------- Co-authored-by: gbouv <guillaume@windmill.dev>
16 lines
369 B
Bash
Executable File
16 lines
369 B
Bash
Executable File
#!/bin/bash
|
|
set -eou pipefail
|
|
script_dirpath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
args=${1:-}
|
|
|
|
rm -rf "${script_dirpath}/dist"
|
|
|
|
${script_dirpath}/build.sh
|
|
rm "${script_dirpath}/client.ts"
|
|
rm "${script_dirpath}/s3Types.ts"
|
|
tsc
|
|
cp "${script_dirpath}/src/client.ts" ${script_dirpath}
|
|
cp "${script_dirpath}/src/s3Types.ts" ${script_dirpath}
|
|
npm publish ${args}
|