Delete docker/login/action.yaml
This commit is contained in:
parent
7feea3bd69
commit
7861ce7186
@ -1,38 +0,0 @@
|
|||||||
name: Docker Login
|
|
||||||
description: Login to Docker Registry
|
|
||||||
|
|
||||||
inputs:
|
|
||||||
registry:
|
|
||||||
type: string
|
|
||||||
required: false
|
|
||||||
description: Docker registry FQDN
|
|
||||||
default: ${{github.server_url}}
|
|
||||||
user:
|
|
||||||
type: string
|
|
||||||
required: false
|
|
||||||
description: Docker user
|
|
||||||
default: ${{github.repository_owner}}
|
|
||||||
pass:
|
|
||||||
type: string
|
|
||||||
required: false
|
|
||||||
description: User password
|
|
||||||
default: ${{secrets.DEPLOY_TOKEN}}
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
required: false
|
|
||||||
default: ${{github.repository}}
|
|
||||||
tag:
|
|
||||||
type: string
|
|
||||||
required: false
|
|
||||||
default: ${{github.ref_name}}
|
|
||||||
|
|
||||||
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 Login
|
|
||||||
uses: docker://docker
|
|
||||||
with:
|
|
||||||
args: /bin/sh -c "docker login -u ${{inputs.user}} -p ${{inputs.pass}} ${{env.URL}} && docker push ${{env.URL}}/${{inputs.name}}:${{inputs.tag}}"
|
|
Loading…
Reference in New Issue
Block a user