make pipelines-dir and additional-python-path pluggable #12
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: Docker image release | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
tags: ["v[0-9].[0-9]+.[0-9]+*"] | |
jobs: | |
build-and-push: | |
name: Build base image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
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 DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USER }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: deepset/hayhooks | |
- name: Build base images | |
uses: docker/bake-action@v4 | |
env: | |
IMAGE_TAG_SUFFIX: ${{ steps.meta.outputs.version }} | |
HAYSTACK_VERSION: ${{ steps.meta.outputs.version }} | |
with: | |
workdir: docker | |
push: true |