mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
Update deploy github action.
This commit is contained in:
parent
8175f13f96
commit
680f0facbc
36
.github/workflows/cd-manual.yml
vendored
Normal file
36
.github/workflows/cd-manual.yml
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
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 }}
|
20
.github/workflows/cd.yml
vendored
20
.github/workflows/cd.yml
vendored
@ -1,20 +1,12 @@
|
|||||||
name: Create docker images
|
name: Create docker images
|
||||||
|
|
||||||
on:
|
on: [create]
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
version:
|
|
||||||
type: string
|
|
||||||
description: Version
|
|
||||||
required: true
|
|
||||||
add-latest:
|
|
||||||
type: boolean
|
|
||||||
description: Add latest tag
|
|
||||||
required: false
|
|
||||||
|
|
||||||
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:
|
||||||
@ -24,12 +16,14 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Set env
|
||||||
|
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- uses: mr-smithers-excellent/docker-build-push@v5
|
- uses: mr-smithers-excellent/docker-build-push@v5
|
||||||
name: Build & push Docker image for ${{ matrix.db-type }}
|
name: Build & push Docker image for ${{ matrix.db-type }}
|
||||||
with:
|
with:
|
||||||
image: umami
|
image: umami
|
||||||
tags: ${{ matrix.db-type }}-${{ inputs.version }}
|
tags: ${{ matrix.db-type }}-${{ env.RELEASE_VERSION }}, ${{ matrix.db-type }}-latest
|
||||||
addLatest: ${{ inputs.add-latest }}
|
|
||||||
buildArgs: DATABASE_TYPE=${{ matrix.db-type }}
|
buildArgs: DATABASE_TYPE=${{ matrix.db-type }}
|
||||||
registry: ghcr.io/${{ github.actor }}
|
registry: ghcr.io/${{ github.actor }}
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user