This repository has been archived by the owner on Feb 4, 2025. It is now read-only.
chore: trigger build #29
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: Build & Push Postgres 17 OCI Image to OCI Image Registry | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "17/Dockerfile" | |
- "docker-entrypoint.sh" | |
- "initdb/*" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "17/Dockerfile" | |
- "docker-entrypoint.sh" | |
- "initdb/*" | |
jobs: | |
docker: | |
permissions: | |
contents: read | |
packages: write | |
uses: ./.github/workflows/build.yaml | |
with: | |
dockerfile: "17/Dockerfile" | |
images: | | |
ghcr.io/${{ github.repository_owner }}/postgres | |
secrets: | |
ghcr-username: ${{ github.repository_owner }} | |
ghcr-access-token: ${{ secrets.GITHUB_TOKEN }} |