chore(deps): update postgres docker digest to 87ec5e0 #1949
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 build | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
lambda: | |
- blazer | |
- google-cidr | |
- heartbeat | |
- system_status | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- uses: dorny/paths-filter@7267a8516b6f92bdb098633497bad573efdbf271 # v2.12.0 | |
id: changes | |
with: | |
filters: | | |
lambda: | |
- '${{ matrix.lambda }}/**' | |
- '.github/workflows/docker-build.yml' | |
- name: Build Docker image | |
if: steps.changes.outputs.lambda == 'true' | |
working-directory: ${{ matrix.lambda }} | |
run: | | |
echo "Current working directory: $(pwd)" | |
echo "Matrix Lambda: ${{ matrix.lambda }}" | |
make docker |