Skip to content

Commit 4cab745

Browse files
author
Jack Yuan
committed
Specify required inputs for push container action (SOFTWARE-4730)
1 parent 69bcf2c commit 4cab745

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

action.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
11
name: 'Push Container Action'
22

33
description: 'Push built images to Docker Hub/OSG Harbor'
4+
5+
inputs:
6+
repo:
7+
description: 'Input string that gets passed along to the docker build args'
8+
required: true
9+
tag_list:
10+
description: 'List of tags that gets passed along to the docker build args'
11+
required: true
12+
default: '' # set to an empty string
13+
docker_username:
14+
description: 'Docker username obtained from secrets'
15+
required: true
16+
docker_password:
17+
description: 'Docker password obtained from secrets'
18+
required: true

0 commit comments

Comments
 (0)