mirror of
https://github.com/kremalicious/umami.git
synced 2025-01-26 10:11:09 +01:00
Merge branch 'master' into dev
This commit is contained in:
commit
22a31bfe97
33
.github/workflows/cd.yml
vendored
33
.github/workflows/cd.yml
vendored
@ -1,12 +1,16 @@
|
|||||||
name: Create docker images
|
name: Create docker images
|
||||||
|
|
||||||
on: [create]
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
type: string
|
||||||
|
description: Version
|
||||||
|
required: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build, push, and deploy
|
name: Build, push, and deploy
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
@ -14,17 +18,14 @@ jobs:
|
|||||||
db-type: [postgresql, mysql]
|
db-type: [postgresql, mysql]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Set env
|
- uses: mr-smithers-excellent/docker-build-push@v5
|
||||||
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
name: Build & push Docker image for ${{ matrix.db-type }}
|
||||||
|
with:
|
||||||
- uses: mr-smithers-excellent/docker-build-push@v5
|
image: umami
|
||||||
name: Build & push Docker image for ${{ matrix.db-type }}
|
tags: ${{ matrix.db-type }}-${{ inputs.version }}
|
||||||
with:
|
buildArgs: DATABASE_TYPE=${{ matrix.db-type }}
|
||||||
image: umami
|
registry: ghcr.io/${{ github.actor }}
|
||||||
tags: ${{ matrix.db-type }}-${{ env.RELEASE_VERSION }}, ${{ matrix.db-type }}-latest
|
username: ${{ github.actor }}
|
||||||
buildArgs: DATABASE_TYPE=${{ matrix.db-type }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
registry: ghcr.io/${{ github.actor }}
|
|
||||||
username: ${{ github.actor }}
|
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user