Added workflow input.

This commit is contained in:
Mike Cao 2025-11-06 23:35:14 -08:00
parent 437c9603db
commit 04a05bbf26

View file

@ -5,6 +5,11 @@ on:
tags: tags:
- 'v*.*.*' - 'v*.*.*'
workflow_dispatch: workflow_dispatch:
inputs:
manual_tag:
description: 'Optional image tag (e.g. 1.2.3, beta, nightly)'
required: false
default: ''
jobs: jobs:
build: build:
@ -54,8 +59,7 @@ jobs:
type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}} type=semver,pattern={{major}}
type=ref,event=branch type=ref,event=branch
type=ref,event=pr type=raw,value=latest,enable=${{ github.event_name == 'workflow_dispatch' }}
type=sha
- name: Build and push Docker image - name: Build and push Docker image
id: build-and-push id: build-and-push