We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50c5ffe commit 3a7583fCopy full SHA for 3a7583f
.github/workflows/task-docker.yml
@@ -3,8 +3,8 @@ name: Publish Docker Image
3
on:
4
workflow_call:
5
inputs:
6
- reponame:
7
- description: 'the image name of the docker hub image'
+ registry:
+ description: 'Login Registry'
8
required: true
9
type: string
10
directory:
@@ -42,7 +42,7 @@ jobs:
42
- name: Log in to Docker Registry
43
uses: docker/login-action@v3
44
with:
45
- registry: git.h2-invent.com
+ registry: ${{ inputs.registry }}
46
username: ${{ secrets.docker_username }}
47
password: ${{ secrets.docker_password }}
48
0 commit comments