Build Docker #65
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 Docker | |
on: | |
push: | |
tags: ["v*"] | |
pull_request: | |
paths: | |
- Dockerfile | |
- docker-bake.hcl | |
- ".github/workflows/docker.yaml" | |
schedule: | |
- cron: "44 4 * * *" | |
workflow_dispatch: | |
jobs: | |
docker: | |
name: Build Docker | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
postgres: ["15", "16", "17"] | |
steps: | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: pgduckdb | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Checkout pg_duckdb extension code | |
uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- name: Set env | |
run: | | |
echo "POSTGRES_VERSION=${{ matrix.postgres }}" >> $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
- name: docker bake | |
uses: docker/bake-action@v5 | |
with: | |
targets: pg_duckdb_${{ matrix.postgres }} | |
push: true | |
set: | | |
*.platform=linux/amd64,linux/arm64 | |
*.cache-to=type=gha,mode=max | |
*.cache-from=type=gha | |
postgres.tags=pgduckdb/pgduckdb:${{ matrix.postgres }}-${{ github.sha }} | |
${{ !contains(github.ref_name, '/') && format('postgres.tags=pgduckdb/pgduckdb:{0}-{1}', matrix.postgres, github.ref_name) || '' }} |