Skip to content

Commit

Permalink
Add release docker workflow for EUID
Browse files Browse the repository at this point in the history
  • Loading branch information
cYKatherine committed Jan 18, 2024
1 parent 9042623 commit 4fb9e76
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release-docker-image-euid.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release EUID TCPORTAL Image
run-name: ${{ inputs.release_type == 'Snapshot' && 'Publish Pre-release' || format('Release {0}', inputs.release_type)}} 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_EUID: 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

0 comments on commit 4fb9e76

Please sign in to comment.