mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
37f2f71156
We want to publish a new Docker image after a new langchain Python package version is published.
15 lines
358 B
YAML
15 lines
358 B
YAML
---
|
|
name: docker/langchain/langchain Release
|
|
|
|
on:
|
|
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI
|
|
workflow_call: # Allows triggering from another workflow
|
|
|
|
jobs:
|
|
release:
|
|
uses: ./.github/workflows/_release_docker.yml
|
|
with:
|
|
dockerfile: docker/Dockerfile.base
|
|
image: langchain/langchain
|
|
secrets: inherit
|