We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55fbd75 commit 76f38afCopy full SHA for 76f38af
2 files changed
.github/actions/docker-build/action.yaml
@@ -38,7 +38,7 @@ runs:
38
docker build \
39
--pull \
40
--file ${{ inputs.file }} \
41
- --tag ${{ inputs.tag }}${{ steps.uniquetag.unique }} \
+ --tag ${{ inputs.tag }}${{ steps.uniquetag.outputs.unique }} \
42
--build-arg base=${{ inputs.base }} \
43
.
44
.github/actions/docker-run/action.yaml
@@ -53,6 +53,7 @@ runs:
53
run: |
54
docker run \
55
--init -t --rm \
56
+ ${{ inputs.args }} \
57
--name "ci-${{ inputs.name }}${{ inputs.id }}" \
58
${{ steps.processenv.outputs.env }} \
59
"${{ inputs.tag }}${{ inputs.id }}" \
0 commit comments