Update docker/build/action.yaml

This commit is contained in:
Zakary Timson 2023-07-28 19:10:04 +00:00
parent ddc93d370b
commit 319e6b322e

View File

@ -20,5 +20,5 @@ 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")
REG=$("${{inputs.registry}}" | sed -E "s%https?://%%gi")
REG=$(echo "${{inputs.registry}}" | sed -E "s%https?://%%gi")
docker build --no-cache -t "$REG/${{inputs.image}}:$TAG" .