Skip to content

Commit

Permalink
build: prep github actions builds
Browse files Browse the repository at this point in the history
  • Loading branch information
TyIsI committed Dec 1, 2024
1 parent ae2cae9 commit dc7dd89
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Docker Image CI

on:
push:
branches:
- 'main'
- 'master'
- 'trunk'
tags:
- 'v*'
pull_request:
branches:
- 'main'
- 'master'
- 'trunk'
workflow_dispatch:

jobs:
build:
strategy:
matrix:
component: [backend, frontend, webhooker]

runs-on: ubuntu-latest

env:
DOCKERHUB_TEMPLATE: ${{ vars.DOCKERHUB_TEMPLATE_PREFIX }}-${{ matrix.component }}

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.DOCKERHUB_TEMPLATE }}

- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push - ${{ matrix.component }}
uses: docker/build-push-action@v5
with:
context: .
file: docker-compose/Dockerfile
target: ${{ matrix.component }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}, ${{ env.DOCKERHUB_TEMPLATE }}:latest
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit dc7dd89

Please sign in to comment.