Skip to content

fix: add .env.script #5

fix: add .env.script

fix: add .env.script #5

name: Create Clickhouse Clustering Script
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- 'main'
paths:
- 'docker/clustering-script/**'
jobs:
build_clustering_script:
name: Push Clustering Script
runs-on: blacksmith-2vcpu-ubuntu-2204
steps:
- name: Checkout the repo
uses: actions/checkout@v4
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
- name: Setup buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
trieve/clickhouse-clustering
tags: |
type=raw,latest
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
# platforms: linux/amd64,linux/arm64
context: docker/clustering-script/
file: ./docker/clustering-script/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}