File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ inputs:
22
22
docker_hub_account :
23
23
description : " Docker Hub account to push the image to"
24
24
required : true
25
- cache :
26
- description : " Cache the build"
25
+ no- cache :
26
+ description : " Disable cache during build"
27
27
required : false
28
- default : " true "
28
+ default : " false "
29
29
runs :
30
30
using : " composite"
31
31
steps :
70
70
platforms : ${{ inputs.platforms || 'linux/amd64,linux/arm64' }}
71
71
push : true
72
72
tags : ${{ inputs.docker_hub_account }}/dbc-demo:latest-cloud
73
- cache : ${{ inputs.cache }}
73
+ no- cache : ${{ inputs.no- cache }}
Original file line number Diff line number Diff line change 26
26
- linux/amd64,linux/arm64
27
27
- linux/amd64
28
28
- linux/arm64
29
- cache :
29
+ no- cache :
30
30
type : boolean
31
- description : Use cache while building
32
- default : true
31
+ description : Disable cache during build
32
+ default : false
33
33
jobs :
34
34
build :
35
35
runs-on : ubuntu-latest
46
46
docker_username : ${{ vars.DOCKER_USERNAME }}
47
47
docker_password : ${{ secrets.DOCKER_PASSWORD }}
48
48
docker_hub_account : ${{ vars.DOCKER_HUB_ACCOUNT }}
49
- cache : ${{ inputs.cache }}
49
+ no- cache : ${{ inputs.no- cache }}
You can’t perform that action at this time.
0 commit comments