Skip to content

Publish Executor Containers #1

Publish Executor Containers

Publish Executor Containers #1

name: Publish Example Executor Containers
on:
workflow_dispatch:
permissions:
contents: write
actions: write
packages: write
defaults:
run:
working-directory: ./python-sdk
jobs:
build-and-push-docker-images:

Check failure on line 17 in .github/workflows/publish_executor_containers.yaml

View workflow run for this annotation

GitHub Actions / Publish Example Executor Containers

Invalid workflow file

The workflow is not valid. .github/workflows/publish_executor_containers.yaml (Line: 17, Col: 3): The workflow must contain at least one job with no dependencies.
name: Build and Push Docker Executor
runs-on: ubuntu-latest
needs:
- extract-version
- publish-indexify-to-pypi
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- run: |
pip install indexify -U
indexify-cli build-default-image
indexify-cli build-image examples/pdf_document_extraction/embedding.py
indexify-cli build-image examples/pdf_document_extraction/lancedb_functions.py
indexify-cli build-image examples/pdf_document_extraction/pdf_parser.py
indexify-cli build-image examples/pdf_document_extraction/workflow.py
docker push tensorlake/indexify-executor-default:3.10
docker push tensorlake/indexify-executor-default:3.11
docker push tensorlake/tensorlake/pdf-blueprint-st
docker push tensorlake/pdf-blueprint-lancdb
docker push tensorlake/pdf-blueprint-pdf-parser
docker push tensorlake/pdf-blueprint-pdf-parser-gpu
docker push tensorlake/pdf-blueprint-download