Skip to content

Commit

Permalink
Update deploy github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecao committed Jun 27, 2022
1 parent 8175f13 commit 680f0fa
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 13 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/cd-manual.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 7 additions & 13 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
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
on: [create]

jobs:

build:
name: Build, push, and deploy
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
runs-on: ubuntu-latest

strategy:
Expand All @@ -24,12 +16,14 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- 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 }}
tags: ${{ matrix.db-type }}-${{ env.RELEASE_VERSION }}, ${{ matrix.db-type }}-latest
buildArgs: DATABASE_TYPE=${{ matrix.db-type }}
registry: ghcr.io/${{ github.actor }}
username: ${{ github.actor }}
Expand Down

0 comments on commit 680f0fa

Please sign in to comment.