File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 17
17
run : |
18
18
echo "GIT_SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
19
19
echo "LC_ENVIRONMENT=dev" >> $GITHUB_ENV
20
+
21
+ - name : Set up Python ${{ matrix.python-version }} + Poetry ${{ env.POETRY_VERSION }}
22
+ uses : " ./.github/actions/poetry_setup"
23
+ with :
24
+ python-version : ${{ matrix.python-version }}
25
+ poetry-version : ${{ env.POETRY_VERSION }}
26
+ cache-key : lint
20
27
21
28
- name : Set up depot.dev multi-arch runner
22
29
uses : depot/setup-action@v1
@@ -31,10 +38,10 @@ jobs:
31
38
uses : docker/setup-buildx-action@v3
32
39
33
40
- name : Build and push
34
- uses : docker/build-push-action@v5
35
- with :
36
- push : true
37
- tags : docker.io/langchain/chat-langchain-backend:${{ env.GIT_SHORT_SHA }}
41
+ run : |
42
+ pip install langgraph-cli
43
+ langgraph build -t docker.io/langchain/chat-langchain-backend:${{ env.GIT_SHORT_SHA }}
44
+ docker push docker.io/langchain/chat-langchain-backend:${{ env.GIT_SHORT_SHA }}
38
45
39
46
- name : Checkout deployments repo
40
47
uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments