mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
37 lines
902 B
YAML
37 lines
902 B
YAML
|
name: Create docker images
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
inputs:
|
||
|
version:
|
||
|
type: string
|
||
|
description: Version
|
||
|
required: true
|
||
|
add-latest:
|
||
|
type: boolean
|
||
|
description: Add latest tag
|
||
|
required: false
|
||
|
|
||
|
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@v5
|
||
|
name: Build & push Docker image for ${{ matrix.db-type }}
|
||
|
with:
|
||
|
image: umami
|
||
|
tags: ${{ matrix.db-type }}-${{ inputs.version }}
|
||
|
addLatest: ${{ inputs.add-latest }}
|
||
|
buildArgs: DATABASE_TYPE=${{ matrix.db-type }}
|
||
|
registry: ghcr.io/${{ github.actor }}
|
||
|
username: ${{ github.actor }}
|
||
|
password: ${{ secrets.GITHUB_TOKEN }}
|