Skip to content

feat(workflows): ignore changes in images readme #4

feat(workflows): ignore changes in images readme

feat(workflows): ignore changes in images readme #4

---
name: Build PostgreSQL image
on:
push:
branches:
- main
paths:
- 'postgresql/**'
- '!postgresql/README.md'
- '.github/workflows/build-postgresql.yml'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
version: ['14.11','15.6','16.2']
steps:
- name: Check-out repository
uses: actions/checkout@v4
- name: Set up QEMU (for multi-arch build)
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image to registry
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
context: ./postgresql
file: ./postgresql/Dockerfile
push: true
build-args: |
PG_RELEASE=${{ matrix.version }}
tags: |
ghcr.io/f-bn/postgresql:${{ matrix.version }}