mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-05 20:54:14 +00:00
Fix Docker registry authentication in workflow
This commit is contained in:
parent
dcd00c368b
commit
436e0f0a2f
1 changed files with 5 additions and 3 deletions
8
.github/workflows/docker.yml
vendored
8
.github/workflows/docker.yml
vendored
|
|
@ -53,11 +53,13 @@ jobs:
|
||||||
|
|
||||||
- name: Login to reg.vados.ru
|
- name: Login to reg.vados.ru
|
||||||
uses: docker/login-action@v4
|
uses: docker/login-action@v4
|
||||||
|
env:
|
||||||
|
REG_PASS: ${{ secrets.VADOS_REG_PASSWORD }}
|
||||||
with:
|
with:
|
||||||
registry: |
|
registry-auth: |
|
||||||
- registry-auth: reg.vados.ru
|
- registry: reg.vados.ru
|
||||||
username: ${{ vars.VADOS_REG_USERNAME }}
|
username: ${{ vars.VADOS_REG_USERNAME }}
|
||||||
password: ${{ secrets.VADOS_REG_PASSWORD }}
|
password: ${REG_PASS}
|
||||||
|
|
||||||
- name: Build and push Docker image
|
- name: Build and push Docker image
|
||||||
uses: docker/build-push-action@v7
|
uses: docker/build-push-action@v7
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue