Skip to content

Commit 4e81f08

Browse files
committed
Added workflow_dispatch
1 parent eeed327 commit 4e81f08

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/build_test_push.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@ name: Build, test and push multi-platform Docker image
22

33
on:
44
workflow_call:
5+
# WARNING:
6+
# 1. Duplicate everything here into workflow_dispatch
7+
# 2. Type "boolean" is not supported
8+
inputs:
9+
rondb_version:
10+
required: true
11+
type: string
12+
rondb_x86_tarball_name:
13+
required: true
14+
type: string
15+
rondb_arm64_tarball_name:
16+
required: true
17+
type: string
18+
is_latest_rondb_release:
19+
required: true
20+
description: "Used to decide whether the Docker image will be using the 'latest' tag without a version number"
21+
type: string
22+
default: 'false'
23+
skip_test:
24+
required: true
25+
type: string
26+
default: 'false'
27+
# Inputs here have to be duplicated from workflow_call...
28+
# https://github.com/orgs/community/discussions/39357
29+
workflow_dispatch:
530
inputs:
631
rondb_version:
732
required: true

0 commit comments

Comments
 (0)