analytics/.github/workflows/build-public-images.yml

59 lines
1.7 KiB
YAML
Raw Normal View History

name: Build Public Images
2020-12-29 17:01:10 +03:00
on:
push:
2022-05-27 14:09:57 +03:00
tags: ['v*']
2020-12-29 17:01:10 +03:00
jobs:
build:
2021-12-08 16:57:15 +03:00
runs-on: buildjet-4vcpu-ubuntu-2004
2020-12-29 17:31:48 +03:00
2020-12-29 17:01:10 +03:00
steps:
2022-05-27 14:09:57 +03:00
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: plausible/analytics
tags: |
type=semver,pattern={{version}},prefix=v
type=semver,pattern={{major}}.{{minor}},prefix=v
type=semver,pattern={{major}},prefix=v
2022-05-27 14:09:57 +03:00
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
2022-05-27 14:09:57 +03:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
2022-05-27 14:09:57 +03:00
- name: Login to DockerHub
uses: docker/login-action@v2
2020-12-29 17:01:10 +03:00
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2020-12-29 17:31:48 +03:00
2022-05-27 14:30:21 +03:00
- name: Build and push
2020-12-29 17:01:10 +03:00
id: docker_build
uses: docker/build-push-action@v4
2020-12-29 17:01:10 +03:00
with:
2022-10-11 14:35:34 +03:00
push: true
2022-05-27 14:09:57 +03:00
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64, linux/arm64
2022-05-27 14:30:21 +03:00
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
BUILD_METADATA=${{ steps.meta.outputs.json }}
ERL_FLAGS=+JPperf true
2022-05-27 14:30:21 +03:00
- name: Image digest
2020-12-29 17:01:10 +03:00
run: echo ${{ steps.docker_build.outputs.digest }}
- name: Notify team on failure
if: ${{ failure() }}
uses: fjogeleit/http-request-action@v1
with:
url: ${{ secrets.BUILD_NOTIFICATION_URL }}
method: 'POST'
customHeaders: '{"Content-Type": "application/json"}'
data: '{"content": "<a href=\"https://github.com/plausible/analytics/actions/workflows/build-public-images.yml\">Build failed</a>"}'