Publish Example Executor Containers #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Example Executor Containers | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
actions: write | |
packages: write | |
jobs: | |
build-and-push-docker-images: | |
name: Build and Push Docker Executor | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- 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/images.py | |
indexify-cli build-image examples/pdf_structured_extraction/workflow.py | |
indexify-cli build-image examples/tweetsgenerator/workflow.py | |
indexify-cli build-image examples/pdf_structured_extraction/document_ai_api_version_workflow.py | |
docker push tensorlake/indexify-executor-default:3.10 | |
docker push tensorlake/indexify-executor-default:3.11 | |
docker push tensorlake/pdf-blueprint-st | |
docker push tensorlake/pdf-blueprint-lancdb | |
docker push tensorlake/pdf-blueprint-pdf-parser-gpu | |
docker push tensorlake/pdf-blueprint-download | |
docker push tensorlake/blueprints-chromadb | |
docker push tensorlake/blueprint-pdf-structured-extraction | |
docker push tensorlake/pdf-structured-extraction-inkwell-example | |
docker push tensorlake/openai-image | |
docker push tensorlake/base-image | |
docker push tensorlake/base-image:3.10 | |
docker push tensorlake/base-image:3.11 | |
docker push tensorlake/openai-image:3.10 | |
docker push tensorlake/openai-image:3.11 |