File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 43
43
restore-keys : |
44
44
${{ runner.os }}-pnpm-store-
45
45
46
+ - name : write langgraph env files
47
+ working-directory : typescript-sdk/integrations/langgraph
48
+ env :
49
+ OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
50
+ LANGSMITH_API_KEY : ${{ secrets.LANGSMITH_API_KEY }}
51
+ run : |
52
+ echo "OPENAI_API_KEY=${OPENAI_API_KEY}" > examples/python/.env
53
+ echo "LANGSMITH_API_KEY=${LANGSMITH_API_KEY}" >> examples/python/.env
54
+ echo "OPENAI_API_KEY=${OPENAI_API_KEY}" > examples/typescript/.env
55
+ echo "LANGSMITH_API_KEY=${LANGSMITH_API_KEY}" >> examples/typescript/.env
56
+ echo "OPENAI_API_KEY=${OPENAI_API_KEY}" > python/ag_ui_langgraph/.env
57
+ echo "LANGSMITH_API_KEY=${LANGSMITH_API_KEY}" >> python/ag_ui_langgraph/.env
58
+
59
+ - name : Upload wtf
60
+ if : always() # Uploads artifacts even if tests fail
61
+ uses : actions/upload-artifact@v4
62
+ with :
63
+ name : heckin-wtf
64
+ path : typescript-sdk/integrations/langgraph/examples/python/.env
65
+ retention-days : 1
66
+
46
67
- name : Install dependencies
47
68
working-directory : typescript-sdk
48
69
run : pnpm install --frozen-lockfile
You can’t perform that action at this time.
0 commit comments