forked from temporalio/temporal
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (28 loc) · 943 Bytes
/
promote-admin-tools-image.yml
File metadata and controls
31 lines (28 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Promote Admin Tools Image
on:
workflow_dispatch:
inputs:
source-tag:
description: "Source tag from temporaliotest registry (e.g. sha-abc123)"
required: true
target-tags:
description: "Target tags for temporalio registry (comma or newline separated, e.g., 1.29.1, latest)"
required: true
override-security-scan:
description: "Override security scan failures (use with caution)"
type: boolean
default: false
required: false
permissions:
contents: read
jobs:
promote:
uses: ./.github/workflows/promote-docker-image.yml
with:
image-name: admin-tools
source-tag: ${{ inputs.source-tag }}
target-tags: ${{ inputs.target-tags }}
override-security-scan: ${{ inputs.override-security-scan }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}