@@ -60,10 +60,10 @@ jobs:
6060 uses : tignis/docker-github-action@v2.3.1
6161 with :
6262 images : ${{ inputs.images }}
63- acr-username : ${{ inputs .acr-username }}
64- acr-password : ${{ inputs .acr-password }}
63+ acr-username : ${{ secrets .acr-username }}
64+ acr-password : ${{ secrets .acr-password }}
6565 acr-registry-url : ${{ inputs.acr-registry-url }}
66- pip-extra-index-url : ${{ inputs .pip-extra-index-url }}
66+ pip-extra-index-url : ${{ secrets .pip-extra-index-url }}
6767 push : ${{ inputs.push }}
6868 docker-build-context : ${{ inputs.docker-build-context }}
6969 dockerfile : ${{ inputs.dockerfile }}
@@ -100,10 +100,10 @@ jobs:
100100 uses : tignis/docker-github-action@v2.3.1
101101 with :
102102 images : ${{ inputs.images }}
103- acr-username : ${{ inputs .acr-username }}
104- acr-password : ${{ inputs .acr-password }}
103+ acr-username : ${{ secrets .acr-username }}
104+ acr-password : ${{ secrets .acr-password }}
105105 acr-registry-url : ${{ inputs.acr-registry-url }}
106- pip-extra-index-url : ${{ inputs .pip-extra-index-url }}
106+ pip-extra-index-url : ${{ secrets .pip-extra-index-url }}
107107 push : ${{ inputs.push }}
108108 docker-build-context : ${{ inputs.docker-build-context }}
109109 dockerfile : ${{ inputs.dockerfile }}
@@ -127,8 +127,8 @@ jobs:
127127 uses : docker/login-action@v3
128128 with :
129129 registry : ${{ inputs.acr-registry-url }}
130- username : ${{ inputs .acr-username }}
131- password : ${{ inputs .acr-password }}
130+ username : ${{ secrets .acr-username }}
131+ password : ${{ secrets .acr-password }}
132132
133133 - name : Create and push manifest
134134 id : manifest
0 commit comments