We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e04720b commit 6f808e3Copy full SHA for 6f808e3
.github/workflows/check_export.yml
@@ -63,8 +63,7 @@ jobs:
63
64
export OPENAI_API_KEY="dummy"
65
reflex init
66
- output=$(reflex export)
67
- echo "stdout=$output" >> $GITHUB_OUTPUT
+ reflex export | tee export_logs.txt
68
for a in frontend.zip backend.zip; do
69
if unzip -t "$a"; then
70
echo "$a prepared as expected"
@@ -76,7 +75,7 @@ jobs:
76
75
77
- name: Check for DeprecationWarning in logs
78
run: |
79
- if grep -q "DeprecationWarning:" <<< "${{ steps.export-check.outputs.stdout }}"; then
+ if (grep -i "DeprecationWarning:" export_logs.txt) ; then
80
echo "Found a Deprecation warning, please fix."
81
exit 1
82
else
0 commit comments