Switch to manual workflow.

This commit is contained in:
Mike Cao 2022-06-24 02:27:08 -07:00
parent 0f32f48c24
commit fb4f5a29b9

View File

@ -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:
@ -16,14 +20,11 @@ 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 }}-${{ env.RELEASE_VERSION }}, ${{ matrix.db-type }}-latest tags: ${{ matrix.db-type }}-${{ inputs.version }}, ${{ matrix.db-type }}-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 }}