Release UID2 Docker Image by @cYKatherine #34
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: Release UID2 TCPORTAL Image | |
run-name: ${{ inputs.release_type == 'Snapshot' && 'Publish Pre-release' || format('Release {0}', inputs.release_type)}} UID2 Docker Image by @${{ github.actor }} | |
on: | |
workflow_dispatch: | |
inputs: | |
release_type: | |
type: choice | |
description: 'The type of release' | |
options: | |
- Major | |
- Minor | |
- Patch | |
- Snapshot | |
pull_request: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: iabtechlab/uid2-tcportal | |
jobs: | |
Image: | |
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-publish-to-docker-versioned.yaml@kcc-UID2-2674-implement-shared-publish-to-docker-versioned | |
with: | |
release_type: ${{ inputs.release_type }} | |
docker_file: Dockerfile_uid2 | |
secrets: inherit |