Update docker/build/action.yaml

This commit is contained in:
Zakary Timson 2023-07-28 18:10:03 +00:00
parent 96253dd288
commit f6d899b1b4

View File

@ -1,6 +1,10 @@
name: Build docker image
inputs:
registry:
required: false
type: string
default: $GITHUB_SERVER_URL
image:
required: true
type: string
@ -16,4 +20,4 @@ runs:
- name: Build image
run: |
TAG=$([ -n "${{inputs.tag}}" ] && echo "${{inputs.tag}}" || [ "$GITHUB_REF" == "refs/heads/develop" ] && echo "latest" || echo "$GITHUB_REF_NAME" | sed -E "s/[_/]/-/g")
docker build --no-cache -t "${{inputs.image}}:$TAG" .
docker build --no-cache -t "${{inputs.registry}}/${{inputs.image}}:$TAG" .