Skip to content

Publish Image

Publish Image #2

Workflow file for this run

name: Publish Image
on:
workflow_dispatch:
inputs:
example:
description: 'list of examples to publish (JSON)'
required: true
# keep in sync with default value of strategy matrix 'example'
default: '["pi"]'
jobs:
publish-image:
if: ${{ startsWith(github.repository, 'apache/') }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# keep in sync with default value of workflow_dispatch input 'example'
example: ${{ fromJSON( inputs.example || '["pi"]' ) }}
steps:
- 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_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: main
- name: Build and push
uses: docker/build-push-action@v6
with:
# build cache on Github Actions, See: https://docs.docker.com/build/cache/backends/gha/#using-dockerbuild-push-action
cache-from: type=gha
cache-to: type=gha,mode=max
context: Examples/${{ matrix.example }}
file: Examples/${{ matrix.example }}/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: apache/spark-connect-swift:${{ matrix.example }}