Merge pull request 'Use var.DOCKER_REGISTRY for the registry location' (#2) from use-var-for-registry into main
Reviewed-on: #2
This commit is contained in:
commit
6677449644
1 changed files with 2 additions and 5 deletions
|
@ -9,9 +9,6 @@ on:
|
|||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
REGISTRY: forge.mdiluz.io
|
||||
|
||||
jobs:
|
||||
|
||||
# Run the tests scripts
|
||||
|
@ -46,7 +43,7 @@ jobs:
|
|||
- name: Log in to the Container registry
|
||||
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
registry: ${{ vars.DOCKER_REGISTRY }}
|
||||
username: ${{ env.GITHUB_ACTOR }}
|
||||
password: ${{ secrets.PACKAGE_PAT }}
|
||||
|
||||
|
@ -57,7 +54,7 @@ jobs:
|
|||
id: meta
|
||||
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
|
||||
with:
|
||||
images: ${{ env.REGISTRY }}/${{ env.GITHUB_REPOSITORY }}
|
||||
images: ${{ vars.DOCKER_REGISTRY }}/${{ env.GITHUB_REPOSITORY }}
|
||||
tags: |
|
||||
type=ref,event=tag
|
||||
type=ref,event=branch
|
||||
|
|
Loading…
Add table
Reference in a new issue