mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
34 lines
849 B
YAML
34 lines
849 B
YAML
name: Create docker images (manual)
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
type: string
|
|
description: Version
|
|
required: true
|
|
|
|
jobs:
|
|
build:
|
|
name: Build, push, and deploy
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
db-type: [postgresql, mysql]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: mr-smithers-excellent/docker-build-push@v6
|
|
name: Build & push Docker image for ${{ matrix.db-type }}
|
|
with:
|
|
image: umami
|
|
tags: ${{ matrix.db-type }}-${{ inputs.version }}, ${{ matrix.db-type }}-latest
|
|
buildArgs: DATABASE_TYPE=${{ matrix.db-type }}
|
|
registry: ghcr.io
|
|
multiPlatform: true
|
|
platform: linux/amd64,linux/arm64
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|