Skip to content

Commit e722b59

Browse files
committed
ci: Build needs to take additional args for pyarmored builds
1 parent f8abdae commit e722b59

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/actions/docker-build/action.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ inputs:
1414
base:
1515
description: "Base docker image to build on top of"
1616
default: ""
17+
args:
18+
description: "Arguments to pass to `docker build`"
19+
required: true
20+
default: ""
1721

1822
outputs:
1923
unique:
@@ -42,4 +46,5 @@ runs:
4246
--file ${{ inputs.file }} \
4347
--tag ${{ inputs.tag }}_${{ steps.uniquetag.outputs.unique }} \
4448
${BASE:+--build-arg base=$BASE} \
49+
${{ inputs.args }} \
4550
.

0 commit comments

Comments
 (0)