Skip to content

Commit 3341530

Browse files
authored
Merge pull request #1213 from dinoallo/fix/workflow
use correct docker registry envs
2 parents 6ceeb31 + 771109a commit 3341530

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/autobuild-dockerfiles.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
uses: docker/setup-buildx-action@v1
4343
- name: Build Image
4444
env:
45-
registry: ${{ vars.D_D_REGISTRY_NAME }}
46-
username: ${{ vars.D_D_REGISTRY_REPOSITORY }}
47-
repo: ${{ vars.D_D_REGISTRY_REPOSITORY }}
48-
password: ${{ secrets.D_D_REGISTRY_TOKEN }}
45+
registry: ${{ vars.D_REGISTRY_NAME }}
46+
username: ${{ vars.D_REGISTRY_REPOSITORY }}
47+
repo: ${{ vars.D_REGISTRY_REPOSITORY }}
48+
password: ${{ secrets.D_REGISTRY_TOKEN }}
4949
app: ${{ needs.resolve-issue-var.outputs.app }}
5050
version: ${{ needs.resolve-issue-var.outputs.version }}
5151
arch: ${{ matrix.arch }}
@@ -65,10 +65,10 @@ jobs:
6565
uses: actions/checkout@v3
6666
- name: Manifest Image
6767
env:
68-
registry: ${{ vars.D_D_REGISTRY_NAME }}
69-
username: ${{ vars.D_D_REGISTRY_REPOSITORY }}
70-
repo: ${{ vars.D_D_REGISTRY_REPOSITORY }}
71-
password: ${{ secrets.D_D_REGISTRY_TOKEN }}
68+
registry: ${{ vars.D_REGISTRY_NAME }}
69+
username: ${{ vars.D_REGISTRY_REPOSITORY }}
70+
repo: ${{ vars.D_REGISTRY_REPOSITORY }}
71+
password: ${{ secrets.D_REGISTRY_TOKEN }}
7272
app: ${{ needs.resolve-issue-var.outputs.app }}
7373
version: ${{ needs.resolve-issue-var.outputs.version }}
7474
run: .github/scripts/manifest-docker.sh

0 commit comments

Comments
 (0)