Skip to content

Publish Docker Image Manually #3

Publish Docker Image Manually

Publish Docker Image Manually #3

name: Publish Docker Image Manually
on:
workflow_dispatch:
inputs:
tag_name:
description: 'Tag for the image (ex: v10.0.1)'
required: true
type: string
isLatest:
description: 'Mark this image as Latest'
required: true
type: boolean
default: true
jobs:
publish_docker:
name: Publish Docker Image
uses: ./.github/workflows/publish_docker.yml
with:
tag_name: ${{ inputs.tag_name }}
islatest: ${{ inputs.isLatest }}
permissions:
contents: read
packages: write