Skip to content

chore - update to version 0.0.7 #84

chore - update to version 0.0.7

chore - update to version 0.0.7 #84

Workflow file for this run

name: 'Publish on pypi'
on:
release:
types: [created]
push:
branches: [main]
jobs:
publish:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/langchain-graphrag
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and run dev container task
uses: devcontainers/[email protected]
with:
imageName: ghcr.io/ksachdeva/langchain-graphrag-devcontainer
cacheFrom: ghcr.io/ksachdeva/langchain-graphrag-devcontainer
runCmd: rye build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist
skip-existing: true
verbose: true