Skip to content

Commit

Permalink
trigger condition test
Browse files Browse the repository at this point in the history
  • Loading branch information
nihaldivyam committed Apr 1, 2024
1 parent 23bcd9b commit ddbf40b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/dockerbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ jobs:
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
- 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
2 changes: 1 addition & 1 deletion postgres-cloudnative-citus/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ RUN apt-get clean \
RUN usermod -u 26 postgres

# Set the user to run subsequent commands as
USER 26
USER 26

0 comments on commit ddbf40b

Please sign in to comment.