Skip to content

Commit 8decbcb

Browse files
committed
Add tag and dry_run input
1 parent 0db0eff commit 8decbcb

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,8 @@ jobs:
425425
${{ matrix.image == 'ngf' && needs.build-oss.outputs.image_version
426426
|| matrix.image == 'nginx' && needs.build-oss.outputs.image_version
427427
|| matrix.image == 'operator' && needs.build-operator.outputs.image_version }}
428+
tag: ${{ inputs.release_version || '' }}
429+
dry_run: ${{ inputs.dry_run || false }}
428430
permissions:
429431
contents: read
430432
packages: read

.github/workflows/openshift-certification.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ on:
1313
image_version:
1414
required: true
1515
type: string
16+
tag:
17+
required: false
18+
type: string
19+
default: ''
20+
dry_run:
21+
required: false
22+
type: boolean
23+
default: false
1624

1725
defaults:
1826
run:

0 commit comments

Comments
 (0)