Publish Minor Version to Docker #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Minor Version to Docker | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'The tag to apply to the Docker file' | |
type: string | |
jobs: | |
build-publish-docker: | |
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-publish-docker-versioned.yaml@main | |
with: | |
tag: ${{ inputs.tag }} | |
cloud_provider: 'default' | |
release_type: 'Minor' | |
secrets: inherit |