* chore: Windmill integration tests * Revert github workflow temp changes * fix ee --------- Co-authored-by: gbouv <guillaume@windmill.dev>
11 lines
328 B
Bash
Executable File
11 lines
328 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
script_dirpath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
root_dirpath="$(cd "${script_dirpath}/.." && pwd)"
|
|
|
|
export WM_VERSION=$(cat ${root_dirpath}/version.txt)
|
|
# WM_VERSION="1.228.1"
|
|
export WM_VERSION_DEV="dev"
|
|
# WM_VERSION_DEV="1.229.0"
|
|
export WM_IMAGE="ghcr.io/windmill-labs/windmill-ee"
|