Skip to content

Commit

Permalink
Merge pull request #21 from DataRecce/fix/upload-duckdb-file-with-rec…
Browse files Browse the repository at this point in the history
…ces-state-file

[Fix] Upload duckdb file with recce state file
  • Loading branch information
kentwelcome authored Jun 6, 2024
2 parents a7b5dd9 + 69bf9e8 commit 4cc8e66
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"containerEnv": {
"RECCE_CI_WORKFLOW_NAME": ".github/workflows/recce_ci.yml", // Path to the Recce CI workflow file
"DEPENDENCIES_FILE": "requirements.txt", // Path to the python dependencies file
"POST_INSTALL_DEPENDENCIES_COMMAND": "pip install gradio" // Command to install python dependencies
"POST_INSTALL_DEPENDENCIES_COMMAND": "pip install gradio", // Command to install python dependencies
"PRE_LAUNCH_RECCE_SERVER_COMMAND": "cp .recce/recce-state-file/jaffle_shop.duckdb ."
},
"customizations": {
"vscode": {
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/recce_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ jobs:
id: recce-artifact-uploader
with:
name: recce-state-file
path: recce_state.json
path: |
recce_state.json
jaffle_shop.duckdb
- name: Prepare Recce Summary
id: recce-summary
Expand Down

0 comments on commit 4cc8e66

Please sign in to comment.