From 6b0401a040d6c376dd07c5f4e1fdb982e395be34 Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Mon, 27 Jun 2022 15:50:24 -0700 Subject: [PATCH] Add latest tag to manual build. --- .github/workflows/cd-manual.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cd-manual.yml b/.github/workflows/cd-manual.yml index 757ae90f..118b225f 100644 --- a/.github/workflows/cd-manual.yml +++ b/.github/workflows/cd-manual.yml @@ -1,4 +1,4 @@ -name: Create docker images +name: Create docker images (manual) on: workflow_dispatch: @@ -7,10 +7,6 @@ on: type: string description: Version required: true - add-latest: - type: boolean - description: Add latest tag - required: false jobs: build: @@ -28,8 +24,7 @@ jobs: 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 }}-${{ inputs.version }}, ${{ matrix.db-type }}-latest buildArgs: DATABASE_TYPE=${{ matrix.db-type }} registry: ghcr.io/${{ github.actor }} username: ${{ github.actor }}