removing the 'v' prefix from image names (#167)
Signed-off-by: Aaron Schlesinger <aaron@ecomaz.net> Co-authored-by: Tom Kerkhove <kerkhove.tom@gmail.com>
This commit is contained in:
parent
efb92393d1
commit
8a28568a2f
|
|
@ -39,7 +39,7 @@ jobs:
|
|||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
# Docker repository to tag the image with
|
||||
tags: ${{ env.IMAGE_OPERATOR_NAME }}:latest,${{ env.IMAGE_OPERATOR_NAME }}:${GITHUB_REF#refs/tags/}
|
||||
tags: ${{ env.IMAGE_OPERATOR_NAME }}:latest,${{ env.IMAGE_OPERATOR_NAME }}:${GITHUB_REF#refs/tags/v}
|
||||
labels: |
|
||||
sh.keda.http.image.source=${{github.event.repository.html_url}}
|
||||
sh.keda.http.image.created=${{steps.prep.outputs.created}}
|
||||
|
|
@ -78,7 +78,7 @@ jobs:
|
|||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
# Docker repository to tag the image with
|
||||
tags: ${{ env.IMAGE_INTERCEPTOR_NAME }}:latest,${{ env.IMAGE_INTERCEPTOR_NAME }}:${GITHUB_REF#refs/tags/}
|
||||
tags: ${{ env.IMAGE_INTERCEPTOR_NAME }}:latest,${{ env.IMAGE_INTERCEPTOR_NAME }}:${GITHUB_REF#refs/tags/v}
|
||||
labels: |
|
||||
sh.keda.http.image.source=${{github.event.repository.html_url}}
|
||||
sh.keda.http.image.created=${{steps.prep.outputs.created}}
|
||||
|
|
@ -116,7 +116,7 @@ jobs:
|
|||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
# Docker repository to tag the image with
|
||||
tags: ${{ env.IMAGE_SCALER_NAME }}:latest,${{ env.IMAGE_SCALER_NAME }}:${GITHUB_REF#refs/tags/}
|
||||
tags: ${{ env.IMAGE_SCALER_NAME }}:latest,${{ env.IMAGE_SCALER_NAME }}:${GITHUB_REF#refs/tags/v}
|
||||
labels: |
|
||||
sh.keda.http.image.source=${{github.event.repository.html_url}}
|
||||
sh.keda.http.image.created=${{steps.prep.outputs.created}}
|
||||
|
|
|
|||
Loading…
Reference in New Issue