File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 10
10
docker_username :
11
11
required : true
12
12
type : string
13
- docker_password :
14
- required : false
15
- type : string
16
13
base_commit :
17
14
required : true
18
15
type : string
19
16
head_commit :
20
17
required : true
21
18
type : string
19
+ secrets :
20
+ docker_password :
21
+ required : false
22
+ type : string
22
23
23
24
jobs :
24
25
generate-matrix :
25
26
runs-on : ubuntu-latest
26
27
outputs :
27
28
matrix : ${{ steps.set-matrix.outputs.matrix }}
28
- run_docker_jobs : ${{ steps.set-run-docker-jobs .outputs.run_docker_jobs }}
29
+ run_docker_jobs : ${{ steps.set-matrix .outputs.run_docker_jobs }}
29
30
steps :
30
31
- name : Checkout code
31
32
uses : actions/checkout@v3
73
74
uses : docker/login-action@releases/v1
74
75
with :
75
76
username : ${{ inputs.docker_username }}
76
- password : ${{ inputs .docker_password }}
77
+ password : ${{ secrets .docker_password }}
77
78
- name : Build and push docker
78
79
uses : docker/build-push-action@v4
79
80
with :
You can’t perform that action at this time.
0 commit comments