Skip to content
This repository has been archived by the owner on Jan 17, 2024. It is now read-only.

First attempt at a build workflow #1

First attempt at a build workflow

First attempt at a build workflow #1

Workflow file for this run

name: Build and Push Docker Images
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
release:
types: [released]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
packages: write
jobs:
build_and_push:
runs-on: ubuntu-latest
strategy:
# Prevent a failure in one image from stopping the other builds
fail-fast: false
matrix:
# TODO: Get Renovate to update these
cnpgTag:
- 14.10
- 15.5
- 16.1
pgvectorsVersion:
- v0.1.10
steps:
# Setup
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Login to GitHub Container Registry
uses: docker/[email protected]
if: ${{ !github.event.pull_request.head.repo.fork }}
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set major postgres version
id: version
run: |
pg_major=$(echo ${{ matrix.cnpgTag }} | cut -d'.' -f1)
echo "pg_major=$pg_major" >> "$GITHUB_OUTPUT"
- name: Generate docker image tags
id: metadata
uses: docker/metadata-action@v5
with:
flavor: |
# Disable latest tag
latest=false
images: |
name=ghcr.io/${{ github.repository_owner }}/cnpgvecto.rs
tags: |
type=ref,event=branch
type=ref,event=pr
# TODO: When exactly to push these tags?
type=raw,value=${{ matrix.cnpgTag }}-${{ matrix.pgvectorsVersion }}
type=raw,value=${{ steps.version.outputs.pg_major }}-${{ matrix.pgvectorsVersion }}
- name: Build and push image
uses: docker/[email protected]
with:
context: .
# TODO: Enable multiarch build
platforms: linux/amd64
push: ${{ !github.event.pull_request }}
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
build-args: PG_MAJOR=${{ steps.version.outputs.pg_major }},PGVECTORS_TAG=${{ matrix.pgvectorsVersion }}