Skip to content

Commit f48e7c0

Browse files
author
vbarda
committed
try ci
1 parent b04a7dd commit f48e7c0

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/deploy-cloud-run.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ jobs:
1717
run: |
1818
echo "GIT_SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
1919
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
2027

2128
- name: Set up depot.dev multi-arch runner
2229
uses: depot/setup-action@v1
@@ -31,10 +38,10 @@ jobs:
3138
uses: docker/setup-buildx-action@v3
3239

3340
- 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 }}
3845
3946
- name: Checkout deployments repo
4047
uses: actions/checkout@v3

0 commit comments

Comments
 (0)