Skip to content

trigger condition test #14

trigger condition test

trigger condition test #14

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
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
- 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: test
run: |
echo ${{ steps.changed-files.outputs.all_changed_files}}
echo ${{matrix.dockerfile}}
# - name: Build & push container image
# id: docker_build
# if: ${{ contains(steps.changed-files.outputs.all_changed_files, matrix.dockerfile) }}
# uses: docker/[email protected]
# with:
# context: .
# file: ${{ matrix.dockerfile }}
# labels: ${{ steps.meta.outputs.labels }}
# tags: ${{ steps.meta.outputs.tags }}
# push: true