mirror of
https://github.com/plausible/analytics.git
synced 2024-12-19 07:31:50 +03:00
2692bf4e38
* Build docker images with new tags * Use single workflow to build all private images
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
name: Build Private Images
|
|
|
|
on:
|
|
push:
|
|
branches: [master, stable]
|
|
tags: ['r*']
|
|
pull_request:
|
|
branches: [master]
|
|
types: [synchronize, labeled]
|
|
|
|
jobs:
|
|
build:
|
|
if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'deploy-to-staging') }}
|
|
runs-on: buildjet-4vcpu-ubuntu-2004
|
|
|
|
steps:
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: plausible/analytics-private
|
|
tags: |
|
|
type=ref,event=pr
|
|
type=ref,event=branch
|
|
type=ref,event=tag
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Build and push
|
|
id: docker_build
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
build-args: |
|
|
BUILD_METADATA=${{ steps.meta.outputs.json }}
|
|
|
|
- name: Image digest
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|