mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-05-05 04:39:53 +02:00
fix image namespace for new secrets structure (#47)
Signed-off-by: Tim Etchells <tetchel@gmail.com>
This commit is contained in:
parent
cedd174f01
commit
dff05ea2fa
3 changed files with 14 additions and 11 deletions
5
.github/workflows/verify-push.yaml
vendored
5
.github/workflows/verify-push.yaml
vendored
|
@ -10,8 +10,9 @@ on:
|
|||
|
||||
env:
|
||||
PROJECT_DIR: spring-petclinic
|
||||
IMAGE_NAME: spring-petclinic
|
||||
IMAGE_REGISTRY: quay.io
|
||||
IMAGE_NAMESPACE: redhat-github-actions
|
||||
IMAGE_NAME: spring-petclinic
|
||||
IMAGE_TAGS: v1 ${{ github.sha }}
|
||||
MVN_REPO_DIR: ~/.m2/repository
|
||||
|
||||
|
@ -104,7 +105,7 @@ jobs:
|
|||
with:
|
||||
image: ${{ steps.build_image.outputs.image }}
|
||||
tags: ${{ steps.build_image.outputs.tags }}
|
||||
registry: ${{ env.IMAGE_REGISTRY }}/${{ secrets.REGISTRY_USER }}
|
||||
registry: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAMESPACE }}
|
||||
username: ${{ secrets.REGISTRY_USER }}
|
||||
password: ${{ secrets.REGISTRY_PASSWORD }}
|
||||
extra-args: |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue