Release EUID Docker Image by @cYKatherine #3
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 EUID TCPORTAL Image | |
run-name: ${{ inputs.release_type == 'Snapshot' && 'Publish Pre-release' || format('Release {0}', inputs.release_type)}} EUID 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/euid-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_euid | |
secrets: inherit |