Skip to content

Workflow file for this run

name: Build Logical backup
on:
push:
branches: [ "fix-logical-backup" ]
tags: [ "v*" ]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- dockerfile: ./backup-sealed-secrets-keys/Dockerfile
image: ghcr.io/obmondo/backup-sealed-secrets-keys
- dockerfile: ./buildah/Dockerfile
image: ghcr.io/obmondo/buildah
- dockerfile: ./logical-backup/Dockerfile
image: ghcr.io/obmondo/logical-backup
- dockerfile: ./mongodb-backup/Dockerfile
image: ghcr.io/obmondo/mongodb-backup
- dockerfile: ./opensearch-curator/Dockerfile
image: ghcr.io/obmondo/opensearch-curator
- dockerfile: ./postgres-cloudnative-citus/Dockerfile
image: ghcr.io/obmondo/postgres-cloudnative-citus
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Get all changed docker files
id: changed-files
uses: tj-actions/changed-files@v44
with:
files: |
**/Dockerfile
- name: Filter changed Dockerfiles
id: filter-changed-dockerfiles
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
set -x
should_build=false
for dockerfile in ${{ matrix.dockerfile }}; do
if [[ "${ALL_CHANGED_FILES}" == *"${dockerfile}"* ]]; then
should_build=true
break
fi
done
echo "::set-output name=should_build::$should_build"
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/[email protected]
with:
images: ${{ matrix.image }}
- name: Build & push container image
id: docker_build
if: steps.filter-changed-dockerfiles.outputs.should_build == 'true'
uses: docker/[email protected]
with:
context: .
file: ${{ matrix.dockerfile }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
push: true