Build OpenSearch docker image #14
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: 'Build OpenSearch docker image' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
schedule: | |
- cron: 0 7 * * THU | |
push: | |
branches: | |
- main | |
paths: | |
- opensearch/** | |
- .github/workflows/opensearch.yml | |
pull_request: | |
branches: | |
- main | |
paths: | |
- opensearch/** | |
- .github/workflows/opensearch.yml | |
workflow_dispatch: | |
inputs: {} | |
jobs: | |
build-docker-image: | |
name: 'Build opensearch-${{ matrix.image.version }} docker image' | |
runs-on: ubuntu-latest | |
env: | |
imageRegistry: ghcr.io/netlogix/docker/opensearch | |
strategy: | |
fail-fast: false | |
max-parallel: 10 | |
matrix: | |
image: | |
# additional Docker files for example V 3.x can be added here | |
- version: 2 | |
dockerFile: ./opensearch/Dockerfile | |
context: ./opensearch | |
target: opensearch | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Read version from Dockerfile | |
id: docker | |
run: | | |
VERSION="$(./extract-version.sh ${{ matrix.image.dockerFile }})" | |
echo "minor_version=$VERSION" >> $GITHUB_OUTPUT | |
echo "major_version=${VERSION%%.*}" >> $GITHUB_OUTPUT | |
- name: Setup QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GHCR | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
builder: ${{ steps.buildx.outputs.name }} | |
context: ${{ matrix.image.context }} | |
target: ${{ matrix.image.target }} | |
file: ${{ matrix.image.dockerFile }} | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: | | |
${{ env.imageRegistry }}:latest | |
${{ env.imageRegistry }}:${{ steps.docker.outputs.minor_version }} | |
${{ env.imageRegistry }}:${{ steps.docker.outputs.major_version }} | |
platforms: linux/amd64,linux/arm64 | |
cache-from: type=gha, scope=${{ github.workflow }}-${{ matrix.image.target }}-${{ steps.docker.outputs.major_version }} | |
cache-to: type=gha, scope=${{ github.workflow }}-${{ matrix.image.target }}-${{ steps.docker.outputs.major_version }}, mode=max |