actions/docker/build/action.yaml

33 lines
787 B
YAML

name: Docker Build
description: Build docker image
inputs:
registry:
type: string
required: false
default: ${{github.server_url}}
name:
type: string
required: false
default: ${{github.repository}}
tag:
type: string
required: false
default: ${{github.ref_name}}
dockerfile:
type: string
required: false
default: Dockerfile
runs:
using: composite
steps:
- name: Creat Image Tag
run: echo "URL=$(echo ${{github.server_url}} | sed s%http://%% | sed s%https://%% )" >> $GITHUB_ENV
shell: sh
- name: Docker Build
uses: docker://docker
with:
entrypoint: docker
args: build -t "${{env.URL}}/${{inputs.name}}:${{inputs.tag}}" -f ${{inputs.dockerfile}} .