Compare commits
No commits in common. "6677449644f296e0ddaa18f252d93f51877b70a9" and "c6e252a82a7bf09a404e484dd49a9cc42225f7f7" have entirely different histories.
6677449644
...
c6e252a82a
1 changed files with 5 additions and 2 deletions
|
@ -9,6 +9,9 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY: forge.mdiluz.io
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
# Run the tests scripts
|
# Run the tests scripts
|
||||||
|
@ -43,7 +46,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: ${{ vars.DOCKER_REGISTRY }}
|
registry: ${{ env.REGISTRY }}
|
||||||
username: ${{ env.GITHUB_ACTOR }}
|
username: ${{ env.GITHUB_ACTOR }}
|
||||||
password: ${{ secrets.PACKAGE_PAT }}
|
password: ${{ secrets.PACKAGE_PAT }}
|
||||||
|
|
||||||
|
@ -54,7 +57,7 @@ jobs:
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
|
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
|
||||||
with:
|
with:
|
||||||
images: ${{ vars.DOCKER_REGISTRY }}/${{ env.GITHUB_REPOSITORY }}
|
images: ${{ env.REGISTRY }}/${{ env.GITHUB_REPOSITORY }}
|
||||||
tags: |
|
tags: |
|
||||||
type=ref,event=tag
|
type=ref,event=tag
|
||||||
type=ref,event=branch
|
type=ref,event=branch
|
||||||
|
|
Loading…
Add table
Reference in a new issue