Skip to content

Bump langchain-core from 0.3.80 to 0.3.81 in /examples/integrations/l… #11

Bump langchain-core from 0.3.80 to 0.3.81 in /examples/integrations/l…

Bump langchain-core from 0.3.80 to 0.3.81 in /examples/integrations/l… #11

Workflow file for this run

name: release
on:
push:
tags: [ 'v[0-9]+.[0-9]+.[0-9]+' ]
jobs:
build-and-push:
runs-on: ubuntu-latest
environment: release
permissions:
contents: write
packages: write
id-token: write # required. https://docs.pypi.org/trusted-publishers/using-a-publisher/
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # 3.11.1
- name: Login to GitHub Container Registry
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # 3.4.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata for Docker
id: meta
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # 5.7.0
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=semver,pattern={{version}}
type=sha
- name: Build and push Docker image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # 6.18.0
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Create GitHub Release
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # 2.2.2
with:
generate_release_notes: true
- name: Install uv
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc #6.4.3
- name: Set up Python
run: uv python install
- name: Build
run: uv build
- name: Publish to PyPi
run: uv publish --trusted-publishing always