Pluralise the ${{ vars.x }} reference name
All checks were successful
Test, Build and Publish / test (pull_request) Successful in 33s
Test, Build and Publish / build-and-push-images (pull_request) Successful in 1m13s

This commit is contained in:
Marc Di Luzio 2024-08-25 23:50:43 +01:00
parent f4d2c45d94
commit 7ce9769bf0

View file

@ -43,7 +43,7 @@ jobs:
- name: Log in to the Container registry - name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with: with:
registry: ${{ var.DOCKER_REGISTRY }} registry: ${{ vars.DOCKER_REGISTRY }}
username: ${{ env.GITHUB_ACTOR }} username: ${{ env.GITHUB_ACTOR }}
password: ${{ secrets.PACKAGE_PAT }} password: ${{ secrets.PACKAGE_PAT }}
@ -54,7 +54,7 @@ jobs:
id: meta id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with: with:
images: ${{ var.DOCKER_REGISTRY }}/${{ env.GITHUB_REPOSITORY }} images: ${{ vars.DOCKER_REGISTRY }}/${{ env.GITHUB_REPOSITORY }}
tags: | tags: |
type=ref,event=tag type=ref,event=tag
type=ref,event=branch type=ref,event=branch