Skip to content

.github/workflows/release.yml #36

.github/workflows/release.yml

.github/workflows/release.yml #36

Workflow file for this run

on:
push:
branches: [ "main" ]
tags: [ "*" ]
schedule:
- cron: "0 10 * * 1"
env:
REGISTRY: "ghcr.io"
IMAGE_NAME: "${{ github.repository }}"
jobs:
build-images:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
include:
- build: clickhouse-keeper
upstream_version: 23.12
- build: clickhouse-server
upstream_version: 23.12
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=sha,event=push,enable=true,prefix=branch-{{ branch }}-${{ matrix.build }}-${{ matrix.upstream_version }}-git-,format=short
type=sha,event=push,enable={{ is_default_branch }},prefix=${{ matrix.build }}-${{ matrix.upstream_version }}-git-,format=short
type=raw,event=push,enable={{ is_default_branch }},value=${{ matrix.build }}-${{ matrix.upstream_version }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
file: "${{ matrix.build }}.dockerfile"
tags: "${{ steps.meta.outputs.tags }}"
labels: "${{ steps.meta.outputs.labels }}"
build-args: |
UPSTREAM_VERSION=${{ matrix.upstream_version }}