File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 20
20
- name : Install dependencies
21
21
run : |
22
22
pip install -r requirements.txt
23
- pip install recce
23
+ pip install recce-nightly
24
24
- name : Prepare dbt Base environment
25
25
run : |
26
26
gh repo set-default ${{ github.repository }}
45
45
- name : Run Recce CI
46
46
run : |
47
47
recce run --cloud --cloud-token ${{ secrets.RECCE_CLOUD_TOKEN }}
48
+ env :
49
+ RECCE_STATE_PASSWORD : ${{ vars.RECCE_STATE_PASSWORD}}
48
50
49
51
- name : Upload DBT Artifacts
50
52
uses : actions/upload-artifact@v4
65
67
run : |
66
68
recce summary --cloud --cloud-token ${{ secrets.RECCE_CLOUD_TOKEN }} > recce_summary.md
67
69
cat recce_summary.md >> $GITHUB_STEP_SUMMARY
68
- echo '${{ env.NEXT_STEP_MESSAGE }}' >> recce_summary.md
70
+ # echo '${{ env.NEXT_STEP_MESSAGE }}' >> recce_summary.md
69
71
70
72
# Handle the case when the recce summary is too long to be displayed in the GitHub PR comment
71
73
if [[ `wc -c recce_summary.md | awk '{print $1}'` -ge '65535' ]]; then
@@ -77,11 +79,12 @@ jobs:
77
79
78
80
env :
79
81
ARTIFACT_URL : ${{ steps.recce-artifact-uploader.outputs.artifact-url }}
82
+ RECCE_STATE_PASSWORD : ${{ vars.RECCE_STATE_PASSWORD}}
80
83
NEXT_STEP_MESSAGE : |
81
84
### How to check the recce result
82
85
```bash
83
86
# Launch the recce server based on the state file
84
- recce server --review --cloud
87
+ recce server --review --cloud --password ${{ vars.RECCE_STATE_PASSWORD}}
85
88
86
89
# Open the recce server http://localhost:8000 by your browser
87
90
```
You can’t perform that action at this time.
0 commit comments