* refactor: extract object store code into windmill-object-store crate with filesystem backend Consolidate all object_store-dependent code from windmill-common into a new windmill-object-store crate. Add a filesystem-backed object store implementation using LocalFileSystem for dev/testing without cloud credentials. Includes 30 comprehensive tests covering render_endpoint, lfs_to_object_store_resource, duckdb_connection_settings, error mapping, and filesystem-backed integration tests. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * all * all * all * all * fix: fix raw_app hardcoded path, add missing ObjectStoreResource import, and add tests Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: move S3ModeFormat to windmill-types, make windmill-parser-sql optional, restore debug logs Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * all --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
441 B
Bash
Executable File
17 lines
441 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Navigate to the target directory
|
|
cd ../../windmill-ee-private || cd ~/windmill-ee-private || { echo "Directory not found"; exit 1; }
|
|
|
|
# Get the current commit hash
|
|
commit_hash=$(git rev-parse HEAD)
|
|
|
|
# Navigate back to the original directory
|
|
cd - || exit
|
|
|
|
# Write the commit hash to ./ee-repo-ref.txt
|
|
echo -n "$commit_hash" > ./ee-repo-ref.txt
|
|
|
|
# Confirmation message
|
|
echo "Commit hash $commit_hash written to ee-repo-ref.txt"
|